style(responsive): add @phone-landscape media query

This commit is contained in:
Victor Sales 2025-10-13 16:27:15 +03:00
parent e74072ebd5
commit d2d28be6de

View file

@ -167,12 +167,19 @@
}
}
@media only screen and (max-height: @xxsmall) and (max-width: @xxsmall) and (orientation: landscape) {
.cell{
.items{
width: 100%;
@media @phone-landscape {
.cell {
flex-direction: row;
.items {
padding: 1px;
gap: 0.15rem;
.item {
pointer-events: none;
}
}
}
}
}