fixes for bottom sheet odd behaviour

This commit is contained in:
10G Meow 2022-02-13 14:55:04 +02:00
parent 66f18a7df2
commit a3759d6226

View file

@ -91,19 +91,20 @@ export default {
} }
.card { .card {
padding: 0px !important; padding: 0px !important;
@media #{map-get($display-breakpoints, 'sm-and-up')} {
&[data-state="close"] {
display: none;
} }
@media #{map-get($display-breakpoints, 'sm-and-down')} { &[data-state="half"] {
.card[data-state="close"] { top: 394px !important;
display: none; }
} }
} }
} }
@media #{map-get($display-breakpoints, 'sm-and-down')} {
.bottom-sheet-content[data-state="closed"] { .bottom-sheet-content[data-state="closed"] {
display: none; display: none;
}
} }
</style> </style>