Fixed filter-dropdown-menu going out of view (attempt1)

This commit is contained in:
Smug Bunny 2025-07-11 04:48:57 +02:00 committed by GitHub
parent 03037e2a9a
commit ac67f2296c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,6 +46,14 @@ export default {
@import "../assets/vars.scss";
@import "../assets/app.scss";
@media only screen and (max-width: 600px) {
header-filter > div > .dropdown:last-of-type > filter-dropdown-menu{
left: auto;
right: 0;
max-width: 80vw;
}
}
.filter-dropdown-menu {
z-index: 100;
transition: all 0.2s;
@ -64,6 +72,7 @@ export default {
opacity: 0;
background: white;
&.open {
height: unset;
visibility: inherit;
@ -102,6 +111,9 @@ export default {
}
}
.filter-dropdown-status {
@extend .btn-outline-normal;
display: flex;