Skip to content

Commit

Permalink
Replace values with theme vars
Browse files Browse the repository at this point in the history
  • Loading branch information
AliceR committed Dec 19, 2024
1 parent 8ff3230 commit b45d108
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/scripts/components/common/page-footer/styles.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@use '$styles/veda-ui-theme-vars.scss' as themeVars;

.footer-text {
color: white;
color: themeVars.$veda-uswds-color-base-white;
align-self: center;
display: flex;
font-size: themeVars.$veda-uswds-fontsize-sm;
Expand All @@ -11,7 +11,7 @@

#return-to-top-container {
padding: themeVars.$veda-uswds-padding-4 themeVars.$veda-uswds-padding-5;
max-width: 64rem;
max-width: themeVars.$veda-uswds-spacing-desktop;
}
#footer_primary_container {
padding: themeVars.$veda-uswds-padding-4 themeVars.$veda-uswds-padding-5;
Expand Down
1 change: 1 addition & 0 deletions app/scripts/styles/_veda-ui-theme-vars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ $veda-uswds-color-base-darkest: utils.color(
); // re-mapped, theme-token 'base-darkest' originally mapped to 'gray-90'
$veda-uswds-color-base-light: utils.color('gray-cool-30');
$veda-uswds-color-base-lightest: utils.color('gray-cool-4');
$veda-uswds-color-base-white: utils.color('white');
$veda-uswds-color-base-ink: utils.color(
'gray-cool-90'
); // re-mapped, theme-token 'ink' originally mapped to 'gray-90'
Expand Down

0 comments on commit b45d108

Please sign in to comment.