Archived
2
0

Compare commits

...
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.

2 Commits

Author SHA1 Message Date
Miroslav Šedivý
8f8403ca59 update screen size to 1024px. 2024-04-02 23:55:45 +02:00
Miroslav Šedivý
1d5e159b74 WIP: scroll to chat proof of concept on mobile, #381. 2024-04-02 23:50:38 +02:00

View File

@ -119,23 +119,30 @@
} }
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 1024px) {
#neko.expanded { html,
.neko-main { body {
transform: translateX(calc(-100% + 65px)); overflow-y: auto !important;
width: auto !important;
height: auto !important;
}
video { body > p {
display: none; display: none;
} }
#neko {
position: relative;
flex-direction: column;
max-height: initial !important;
.neko-main .video-container {
height: 100vh;
} }
.neko-menu { .neko-menu {
position: absolute; height: 100vh;
top: 0; width: 100% !important;
right: 0;
bottom: 0;
left: 65px;
width: calc(100% - 65px);
} }
} }
} }