workadventure/front/src/Components/Menu/MenuIcon.svelte

37 lines
783 B
Svelte
Raw Normal View History

<script lang="typescript">
2021-08-09 14:49:17 +02:00
import {menuVisiblilityStore} from "../../Stores/MenuStore";
import {get} from "svelte/store";
2021-07-12 17:39:16 +02:00
function showMenu(){
2021-08-09 14:49:17 +02:00
menuVisiblilityStore.set(!get(menuVisiblilityStore))
2021-07-12 17:39:16 +02:00
}
function onKeyDown(e: KeyboardEvent) {
if (e.key === "Tab") {
showMenu();
}
}
</script>
<svelte:window on:keydown={onKeyDown}/>
<main class="menuIcon">
<img src="/static/images/logo-WA-min.png" alt="open menu" class="nes-pointer" on:click|preventDefault={showMenu}>
</main>
<style lang="scss">
2021-08-09 14:49:17 +02:00
.menuIcon {
pointer-events: auto;
margin: 25px;
img {
width: 60px;
padding-top: 0;
}
2021-08-09 14:49:17 +02:00
}
@media only screen and (max-height: 700px) {
.menuIcon {
margin: 100px;
}
2021-08-09 14:49:17 +02:00
}
</style>