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) { @media @phone-landscape {
.cell{ .cell {
.items{ flex-direction: row;
width: 100%;
.items {
padding: 1px;
gap: 0.15rem;
.item {
pointer-events: none;
}
}
} }
}
} }