[frontend] Fix overflow style

This commit is contained in:
Lilian 2024-08-13 23:48:37 +02:00
parent 9527c9ca09
commit f9c034ffe4
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
display: flex; display: flex;
overflow: scroll; overflow: auto;
flex-wrap: nowrap; flex-wrap: nowrap;
} }

View file

@ -11,7 +11,7 @@
border-radius: 1rem; border-radius: 1rem;
min-width: 15rem; min-width: 15rem;
min-height: 10rem; min-height: 10rem;
overflow: scroll; overflow: auto;
top: calc(var(--top) + 2.5rem); top: calc(var(--top) + 2.5rem);
left: calc(var(--left) - 5.5rem); left: calc(var(--left) - 5.5rem);
} }