Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Rem converter]: Support for different base font-sizes #196

Merged
merged 13 commits into from
Oct 13, 2023
Prev Previous commit
Next Next commit
Merge branch 'main' into DS-212-Foundations-tuki-rem-arvoille
  • Loading branch information
MayaMarjut authored Oct 9, 2023
commit bd83f39bc3ccd5a043533aa7d543aeda4c1b7fd7
Original file line number Diff line number Diff line change
@@ -22,7 +22,11 @@ $pixel-tokens: (
'2px': $pixel-2,
'3px': $pixel-3,
);

$spacing-input-xs: calc(4rem / var(--fudis-rem-multiplier));
$spacing-input-sm: calc(10rem / var(--fudis-rem-multiplier));
$spacing-input-md: calc(14rem / var(--fudis-rem-multiplier));
$spacing-input-lg: calc(23rem / var(--fudis-rem-multiplier));

// Fixed size for checkboxes' visual input box. Clickable input area should be 2rem high.
$spacing-input-checkbox: calc(1.25rem / var(--fudis-rem-multiplier));
You are viewing a condensed version of this merge commit. You can view the full changes here.