@@ -246,8 +246,9 @@ textarea:not([rows]) {
246246 --product-selector-background : 0.98 0 0 ;
247247
248248 /* vars for the primary grid setup */
249- --grid-content : minmax (34rem , 50rem );
250- --grid-content-mobile : minmax (20rem , 50rem );
249+ --grid-max : 50rem ;
250+ --grid-content : minmax (34rem , var (--grid-max ));
251+ --grid-content-mobile : minmax (20rem , var (--grid-max ));
251252 --grid-side-callout : minmax (18rem , 26rem );
252253 --grid-column-gutter : 3.5rem ;
253254
@@ -313,7 +314,7 @@ textarea:not([rows]) {
313314 --sidebar-item-padding-tb : 0.25rem ;
314315 --content-max-width : 88rem ;
315316
316- --main-col : minmax (34rem , 50 rem );
317+ --main-col : minmax (34rem , var ( --grid-max ) );
317318 --side-col : minmax (18rem , 26rem );
318319}
319320
@@ -1293,7 +1294,6 @@ main {
12931294/* Search results on content */
12941295atomic-search-interface # search-v2 {
12951296 position : relative;
1296- z-index : 1 ;
12971297 /* biome-ignore lint: Coveo override */
12981298 display : inline-block !important ;
12991299 width : 95vw ;
@@ -1930,6 +1930,7 @@ table {
19301930 font-size : var (--font-step-0 );
19311931
19321932 td {
1933+ max-width : var (--grid-max );
19331934 vertical-align : middle;
19341935 padding : var (--table-inner-padding );
19351936 background : transparent;
@@ -2012,9 +2013,22 @@ blockquote {
20122013 margin : 0 ;
20132014 }
20142015
2016+ /* Prevent codeblock x-axis overflow within callouts, retaining flow-gap for y */
2017+ .callout-content : has (.code-block ) {
2018+ .code-block {
2019+ margin-right : 0 ;
2020+ margin-left : 0 ;
2021+ }
2022+ }
2023+
20152024 .callout-content {
20162025 margin : 0 ;
20172026 }
2027+
2028+ /* To help them align with text, side callouts should not have top margin*/
2029+ & [data-grid = "last-third" ] {
2030+ --margin-callout : 0 0 0 1rem ;
2031+ }
20182032}
20192033
20202034blockquote .note {
@@ -2388,6 +2402,10 @@ ul .code-block {
23882402
23892403.banner {
23902404 margin-block-start : 1rem ;
2405+
2406+ blockquote {
2407+ margin-left : 0rem ;
2408+ }
23912409}
23922410
23932411/* MARK: Images
0 commit comments