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

40 lines
858 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
}
2021-08-18 15:34:26 +02:00
@media only screen and (max-width: 800px), only screen and (max-height: 800px) {
2021-08-09 14:49:17 +02:00
.menuIcon {
2021-08-17 14:44:43 +02:00
margin: 3px;
img {
width: 50px;
}
}
2021-08-09 14:49:17 +02:00
}
</style>