This commit is contained in:
Yûki VACHOT 2024-05-12 04:00:09 +02:00
parent 317d79da23
commit d736c415da

View file

@ -1,8 +1,9 @@
html, body { html, body {
height: 100%; height: 100vh;
margin: 0; margin: 0;
padding: 0; padding: 0;
background: lightgrey; background: lightgrey;
overflow: hidden;
} }
#container { #container {
@ -11,11 +12,12 @@ html, body {
height: 100vh; height: 100vh;
background: white; background: white;
border: 1px solid #ccc; border: 1px solid #ccc;
overflow: hidden;
} }
.graph-title { .graph-title {
position: absolute; position: absolute;
top: 25px; top: 10px;
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
font-size: 32px; font-size: 32px;
@ -27,7 +29,6 @@ html, body {
} }
/* The Drawer (background) */
.drawer { .drawer {
display: none; display: none;
position: fixed; position: fixed;
@ -39,6 +40,7 @@ html, body {
background-color: white; background-color: white;
box-shadow: -2px 0 5px rgba(0,0,0,0.5); box-shadow: -2px 0 5px rgba(0,0,0,0.5);
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto;
} }
.drawer-content { .drawer-content {