Fix views overflowing on small viewports.
Some checks failed
Build Vite / build (24.x) (push) Has been cancelled

This commit is contained in:
天クマ 2026-08-16 18:10:51 -03:00
commit e5fe39e263

View file

@ -138,6 +138,8 @@ input:focus {
.main-holder { .main-holder {
display: flex; display: flex;
width: 100%;
height: 100%;
} }
._scrollableView, ._scrollableContainer { ._scrollableView, ._scrollableContainer {
@ -145,6 +147,7 @@ input:focus {
flex-direction: row; flex-direction: row;
width: 100%; width: 100%;
height: 100%; height: 100%;
min-width: 0;
overflow-x: auto; overflow-x: auto;
overflow-y: hidden; overflow-y: hidden;
scroll-snap-type: x mandatory; scroll-snap-type: x mandatory;