Compare commits

...

1 Commits

Author SHA1 Message Date
chapoi 8e0e2e1a8a UX: add fadeout to topic list on large vp 2025-06-10 11:16:08 +02:00
+23 -1
View File
@@ -1,14 +1,36 @@
@use "lib/viewport";
.list-controls {
position: sticky;
top: var(--header-offset);
background: var(--d-content-background);
z-index: z("base");
padding: 1.5rem 0 1rem 0;
padding: 1.5rem 0 0 0;
max-width: unset;
@include viewport.until(sm) {
padding-bottom: 1em;
}
.navigation-container {
position: relative;
gap: 1rem;
@include viewport.from(sm) {
&:after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -1rem;
height: 1rem;
background: linear-gradient(
to bottom,
var(--d-content-background),
transparent
);
}
}
.category-breadcrumb {
order: 1;
}