fix(modal): do not prevent scrolling on mobile

Maybe related to https://github.com/go-vikunja/vikunja/issues/325
This commit is contained in:
kolaente 2024-09-15 11:37:51 +02:00
parent b4ea1bb86a
commit 6a5342bd49
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 7 deletions

View File

@ -249,13 +249,8 @@ $modal-width: 1024px;
}
@media print, screen and (max-width: $tablet) {
body:has(.modal-mask) {
height: auto;
overflow: visible;
#app {
display: none;
}
body:has(.modal-mask) #app {
display: none;
}
}
</style>