Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,10 @@ Styleguide Objects.Section
.o-section--layout-b,
.o-section--layout-c,
.o-section--layout-d {
gap: 3.0rem; /* GH-99: Use standard spacing value */
/* GH-99: Use standard spacing value */
--gap: 3.0rem; /* to allow instances to re-use the gap value */

gap: var(--gap);
}
.o-section--layout-a { @extend .x-layout--a; }
.o-section--layout-b { @extend .x-layout--b; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
/* Primary (Text, Layout) */

--global-color-primary--xx-light: #FFFFFF;
--global-color-primary--xx-light-rgb: 255, 255, 255;
--global-color-primary--x-light: #F4F4F4;
--global-color-primary--x-light-rgb: 244, 244, 244;
--global-color-primary--light: #C6C6C6;
Expand All @@ -28,6 +29,7 @@
--global-color-primary--x-dark: #484848;
--global-color-primary--x-dark-rgb: 72, 72, 72;
--global-color-primary--xx-dark: #222222;
--global-color-primary--xx-dark-rgb: 34, 34, 34;

/* Distinct Hues */

Expand Down