2021-05-12 18:32:55 +02:00
|
|
|
<script lang="typescript">
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<main class="menuIcon">
|
|
|
|
<section>
|
|
|
|
<button>
|
|
|
|
<img src="/static/images/menu.svg" alt="Open menu">
|
|
|
|
</button>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
|
2021-05-17 14:30:54 +02:00
|
|
|
<style lang="scss">
|
2021-05-12 18:32:55 +02:00
|
|
|
.menuIcon button {
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
border-radius: 7px;
|
|
|
|
padding: 2px 8px;
|
2021-05-17 14:30:54 +02:00
|
|
|
img {
|
|
|
|
width: 14px;
|
|
|
|
padding-top: 0;
|
|
|
|
/*cursor: url('/resources/logos/cursor_pointer.png'), pointer;*/
|
|
|
|
}
|
2021-05-12 18:32:55 +02:00
|
|
|
}
|
|
|
|
.menuIcon section {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
@media only screen and (max-height: 700px) {
|
|
|
|
.menuIcon section {
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|