Skip to content

Commit 2b048ff

Browse files
authored
Merge pull request #144 from springload/feature/enwiden-the-tiles
Enwiden the tiles
2 parents 6e75b4d + ca7cfcd commit 2b048ff

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Diff for: cdhweb/static_src/global/layout/page-layout.scss

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,19 @@
1919
grid-template-areas: '. . m m m m m m m m . .';
2020
}
2121
@include xxxl {
22-
grid-template-areas: '. . m m m m m m . . . .';
22+
grid-template-areas: '. . m m m m m m m . . .';
2323
}
2424
}
2525
.page-layout--with-sidenav {
2626
// m = main content
2727
// s = side-nav
28+
// Note, we must keep the extra space between the `s` and `m` because otherwise
29+
// content that has the negative "outdent" (e.g. headings) can collide with the sidenav.
2830
@include xl {
2931
grid-template-areas: 's s s . m m m m m m m .';
3032
}
3133
@include xxxl {
32-
grid-template-areas: 's s . m m m m m m . . .';
34+
grid-template-areas: 's s . m m m m m m m . .';
3335
}
3436
}
3537

Diff for: cdhweb/static_src/global/layout/streamfields.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@
4444
.block--cta,
4545
.block--note,
4646
.block--pull-quote,
47-
.block--video
47+
.block--video,
48+
.block--newsletter
4849
) {
4950
max-inline-size: var(--reading-max-width);
5051
}

0 commit comments

Comments
 (0)