From 98e09caa79bc84dd7d03ec6a746000b85ac5b0ef Mon Sep 17 00:00:00 2001 From: Andrew Duthie Date: Mon, 2 Oct 2023 13:33:43 -0400 Subject: [PATCH] Mark font role variables as default Allow overriding --- src/scss/packages/_uswds-core.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scss/packages/_uswds-core.scss b/src/scss/packages/_uswds-core.scss index 708b7cc8..5bc15baf 100644 --- a/src/scss/packages/_uswds-core.scss +++ b/src/scss/packages/_uswds-core.scss @@ -187,8 +187,8 @@ $site-palette: ( // Font path $theme-font-path: if(variable-exists(font-path), $font-path, '../fonts') !default, // Font role - $theme-font-role-heading: 'sans', - $theme-font-role-alt: 'sans', + $theme-font-role-heading: 'sans' !default, + $theme-font-role-alt: 'sans' !default, // Font type $theme-font-type-sans: 'public-sans' !default, $theme-font-type-serif: false !default,