2021-05-12 18:32:55 +02:00
|
|
|
<script lang="typescript">
|
2021-07-12 17:39:16 +02:00
|
|
|
import {menuVisible} from "../../Stores/MenuStore";
|
2021-05-12 18:32:55 +02:00
|
|
|
|
2021-07-12 17:39:16 +02:00
|
|
|
let isOpen : Boolean = false;
|
|
|
|
|
|
|
|
function openMenu(){
|
|
|
|
isOpen = !isOpen; //Devrait être dans le store/menuVisible.set(isOPen);/
|
|
|
|
if(isOpen) menuVisible.set(true);
|
|
|
|
else menuVisible.set(false);
|
|
|
|
}
|
2021-05-12 18:32:55 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<main class="menuIcon">
|
|
|
|
<section>
|
2021-07-12 17:39:16 +02:00
|
|
|
<button on:click|preventDefault={openMenu}>
|
2021-07-13 12:00:09 +02:00
|
|
|
<img src="/static/images/logo-WA-min.png" alt="open menu">
|
2021-05-12 18:32:55 +02:00
|
|
|
</button>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
|
2021-05-17 14:30:54 +02:00
|
|
|
<style lang="scss">
|
2021-05-12 18:32:55 +02:00
|
|
|
.menuIcon button {
|
2021-07-12 17:39:16 +02:00
|
|
|
pointer-events: auto;
|
|
|
|
border-radius: 200px;
|
2021-05-17 14:30:54 +02:00
|
|
|
img {
|
2021-07-12 17:39:16 +02:00
|
|
|
width: 60px;
|
2021-05-17 14:30:54 +02:00
|
|
|
padding-top: 0;
|
2021-07-12 17:39:16 +02:00
|
|
|
cursor: url('/resources/logos/cursor_pointer.png'), pointer;
|
2021-05-17 14:30:54 +02:00
|
|
|
}
|
2021-05-12 18:32:55 +02:00
|
|
|
}
|
|
|
|
.menuIcon section {
|
2021-07-12 17:39:16 +02:00
|
|
|
margin: 25px;
|
2021-05-12 18:32:55 +02:00
|
|
|
}
|
|
|
|
@media only screen and (max-height: 700px) {
|
|
|
|
.menuIcon section {
|
2021-07-12 17:39:16 +02:00
|
|
|
margin: 100px;
|
2021-05-12 18:32:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|