Skip to content

Commit 31c1e76

Browse files
Simplify .-section-x-inset-xl CSS (#945)
In the first three `calc()` expressions, `100vw` is less than `1280px` (otherwise we'd be in the `screen(xl)` media query), so `min(1280px, 100vw)` is just a complex way to say `100vw`, and thus `calc((100vw - (min(1280px, 100vw) - 32px)) / 2 * -1)` is just a very complex way to say `-16px`. I simplified them to the corresponding `-mx-` classes, so that it's clear that they are the same numbers used in `.section-x-inset-xl`. In the last `calc()`, `100vw` is always more than `1280px` (because of the media query), so `min(1280px, 100vw)` is just a complex way of saying `1280px`. I left `1280px - 112px` which is hopefully more clear than just writing `1068px`. Note that using `100vw` instead of `1280px` in the last one would fix the bug reported in #944, but I'm assuming that `min(1280px, 100vw)` is there for a reason so I cannot simply remove it. --- **Edit**: The second commit fixes #944, by using the page width _excluding the vertical scrollbar_ rather than using the full page width to compute the sticky breadcrumb margin.
1 parent c3f659a commit 31c1e76

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

frontend/routes/_layout.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export default function Layout(
1111
<>
1212
<div
1313
class="min-h-[calc(100vh-4rem)] md:min-h-[calc(100vh-4.5rem)]"
14+
style="container: page / size"
1415
data-dark-theme="light"
1516
>
1617
<a

frontend/static/styles.css

+4-8
Original file line numberDiff line numberDiff line change
@@ -150,16 +150,12 @@
150150
}
151151

152152
.-section-x-inset-xl {
153-
margin: 0 calc((100vw - (min(1280px, 100vw) - 32px)) / 2 * -1);
153+
@apply -mx-4 md:-mx-8 lg:-mx-10;
154154

155-
@media screen(md) {
156-
margin: 0 calc((100vw - (min(1280px, 100vw) - 64px)) / 2 * -1);
157-
}
158-
@media screen(lg) {
159-
margin: 0 calc((100vw - (min(1280px, 100vw) - 80px)) / 2 * -1);
160-
}
161155
@media screen(xl) {
162-
margin: 0 calc((100vw - (min(1280px, 100vw) - 112px)) / 2 * -1);
156+
@container page (width > 0) {
157+
margin: 0 calc((112px + max(0px, 100cqw - 1280px)) / 2 * -1);
158+
}
163159
}
164160
}
165161

0 commit comments

Comments
 (0)