mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-01-11 22:40:31 +00:00
fix(calendar): disable banner click in phone-portrait mode
This commit is contained in:
parent
2e1ad64d02
commit
e74072ebd5
1 changed files with 18 additions and 0 deletions
|
|
@ -138,6 +138,17 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: @minimum) and (orientation: portrait) {
|
||||
.cell{
|
||||
.items{
|
||||
.item{
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media @phone-portrait {
|
||||
.cell {
|
||||
flex-direction: column;
|
||||
|
|
@ -150,6 +161,7 @@
|
|||
|
||||
.item {
|
||||
width: 100%;
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -187,6 +199,12 @@
|
|||
flex-direction: row;
|
||||
display: flex;
|
||||
|
||||
.items{
|
||||
.item{
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
|
||||
.heading {
|
||||
display: flex;
|
||||
gap: 0.25rem;
|
||||
|
|
|
|||
Loading…
Reference in a new issue