tangled
alpha
login
or
join now
moth11.net
/
xcvr
2
fork
atom
frontend for xcvr appview
2
fork
atom
overview
issues
pulls
pipelines
update left sidebar
moth11.net
7 months ago
7e3389dd
af459827
+8
-6
1 changed file
expand all
collapse all
unified
split
src
routes
+layout.svelte
+8
-6
src/routes/+layout.svelte
···
95
95
>
96
96
</div>
97
97
98
98
-
<div class="beep">here's what's been happening recently</div>
99
99
-
<Spectrum channels={data.channels}></Spectrum>
98
98
+
<div id="channels-below-canton">
99
99
+
<div class="beep">here's what's been happening recently</div>
100
100
+
<Spectrum channels={data.channels}></Spectrum>
101
101
+
</div>
100
102
</aside>
101
103
{@render children()}
102
104
</div>
···
140
142
#left-sidebar {
141
143
position: sticky;
142
144
top: 0;
145
145
+
display: grid;
146
146
+
grid-template-rows: auto, 1fr;
143
147
}
144
144
-
#canton {
145
145
-
position: sticky;
146
146
-
top: 0;
147
147
-
background: var(--bg);
148
148
+
#channels-below-canton {
149
149
+
overflow-y: auto;
148
150
z-index: 1;
149
151
}
150
152
.tab-container {