workadventure/front/dist/resources/html/gameMenuIcon.html

28 lines
548 B
HTML

<style>
#menuIcon {
pointer-events: auto;
}
#menuIcon button {
background-color: black;
color: white;
border-radius: 7px;
height: 28px;
width: 34px;
}
#menuIcon button img{
width: 14px;
padding-top: 3px;
cursor: pointer;
}
#menuIcon section {
margin: 10px;
}
</style>
<main id="menuIcon" hidden>
<section>
<button id="openMenuButton">
<img src="/static/images/menu.svg">
</button>
</section>
</main>