3.0 Beta 4

This commit is contained in:
2026-04-11 17:23:19 +02:00
parent 7e5ea20409
commit 62bc82f158
44 changed files with 860 additions and 51 deletions

View File

@@ -0,0 +1,45 @@
#layout {
overflow-y: scroll;
width: 100%;
height: 100%;
display: grid;
grid-template-columns: 0 100%;
overflow-x: hidden;
padding: 15px;
transition: 0.2s;
&.routerOutletActive {
overflow-y: hidden;
padding: 0;
grid-template-columns: 1fr 300px;
#router {
background: var(--tui-background-neutral-1-pressed);
}
main {
padding: 15px;
}
}
&.hideNetworkNav {
grid-template-columns: 1fr;
#network-data {
&.hidden {
display: none;
}
}
}
.category {
background: var(--tui-background-base-alt);
width: 100%;
padding: 15px;
.channel {
display: flex;
justify-content: start;
}
}
}