Move settings to extra pages
This commit is contained in:
parent
aa42223fc9
commit
b1f7938b37
4 changed files with 69 additions and 44 deletions
25
style.css
25
style.css
|
|
@ -738,6 +738,16 @@ input:focus {
|
|||
display: none !important;
|
||||
}
|
||||
|
||||
/* Extra Pages */
|
||||
.extra-page {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.extra-page-content {
|
||||
padding: 24px;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.app-container {
|
||||
width: 100%;
|
||||
|
|
@ -783,6 +793,21 @@ input:focus {
|
|||
scroll-snap-stop: always;
|
||||
}
|
||||
|
||||
.extra-page {
|
||||
display: block;
|
||||
width: 100%;
|
||||
flex: 0 0 100%;
|
||||
position: relative;
|
||||
left: auto;
|
||||
top: auto;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
scroll-snap-align: start;
|
||||
scroll-snap-stop: always;
|
||||
background-color: var(--bg-main);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/* Disable scrolling to active chat if none is selected */
|
||||
/* .app-container.no-active-chat .chat-area {
|
||||
display: none !important;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue