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

30 lines
676 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 openMenu(){
2021-08-09 14:49:17 +02:00
menuVisiblilityStore.set(!get(menuVisiblilityStore))
2021-07-12 17:39:16 +02:00
}
</script>
<main class="menuIcon">
2021-08-09 14:49:17 +02:00
<img src="/static/images/logo-WA-min.png" alt="open menu" on:click|preventDefault={openMenu}>
</main>
<style lang="scss">
2021-08-09 14:49:17 +02:00
.menuIcon {
pointer-events: auto;
margin: 25px;
img {
width: 60px;
padding-top: 0;
//cursor: url('/resources/logos/cursor_pointer.png'), pointer;
}
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>