Fix views overflowing on small viewports.
Some checks failed
Build Vite / build (24.x) (push) Has been cancelled
Some checks failed
Build Vite / build (24.x) (push) Has been cancelled
This commit is contained in:
parent
e7a91a18f6
commit
e5fe39e263
1 changed files with 3 additions and 0 deletions
|
|
@ -138,6 +138,8 @@ input:focus {
|
|||
|
||||
.main-holder {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
._scrollableView, ._scrollableContainer {
|
||||
|
|
@ -145,6 +147,7 @@ input:focus {
|
|||
flex-direction: row;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-width: 0;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
scroll-snap-type: x mandatory;
|
||||
|
|
|
|||
Loading…
Reference in a new issue