mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +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 {
|
@media @phone-portrait {
|
||||||
.cell {
|
.cell {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
@ -150,6 +161,7 @@
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -187,6 +199,12 @@
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
|
.items{
|
||||||
|
.item{
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.heading {
|
.heading {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 0.25rem;
|
gap: 0.25rem;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue