First working example with Svelte (the menu icon shows up on entering the game)

This commit is contained in:
David Négrier 2021-05-12 18:32:55 +02:00
parent 62cc1f73ca
commit 1885ea42a4
9 changed files with 57 additions and 4918 deletions

View file

@ -38,6 +38,8 @@
<div class="main-container" id="main-container">
<!-- Create the editor container -->
<div id="game" class="game">
<div id="svelte-overlay">
</div>
<div id="game-overlay" class="game-overlay">
<div id="main-section" class="main-section">
</div>

View file

@ -1225,3 +1225,11 @@ div.action.danger p.action-body{
50% {bottom: 30px;}
100% {bottom: 40px;}
}
#svelte-overlay {
position: absolute;
width: 100%;
height: 100%;
pointer-events: none;
}