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