-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge release/2.4.3 into main branch (#1128)
- Loading branch information
1 parent
5e1795a
commit c18d468
Showing
43 changed files
with
418 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,25 @@ | ||
// TODO: deprecate after swapping for synth spacing vars | ||
$ux-spacing-10: 4px; | ||
$ux-spacing-20: 8px; | ||
$ux-spacing-30: 12px; | ||
$ux-spacing-40: 16px; | ||
$ux-spacing-50: 24px; | ||
$ux-spacing-60: 32px; | ||
$ux-spacing-70: 48px; | ||
|
||
$synth-spacing-base: 4px; | ||
|
||
// Increments of 4 according to the 4 pixel grid system | ||
$synth-spacing-1: $synth-spacing-base; // 4px | ||
$synth-spacing-2: $synth-spacing-base * 2; // 8px | ||
$synth-spacing-3: $synth-spacing-base * 3; // 12px | ||
$synth-spacing-4: $synth-spacing-base * 4; // 16px | ||
$synth-spacing-5: $synth-spacing-base * 5; // 20px | ||
$synth-spacing-6: $synth-spacing-base * 6; // 24px | ||
$synth-spacing-7: $synth-spacing-base * 7; // 28px | ||
$synth-spacing-8: $synth-spacing-base * 8; // 32px | ||
$synth-spacing-9: $synth-spacing-base * 9; // 36px | ||
$synth-spacing-10: $synth-spacing-base * 10; // 40px | ||
$synth-spacing-11: $synth-spacing-base * 11; // 44px | ||
$synth-spacing-12: $synth-spacing-base * 12; // 48px | ||
|
Oops, something went wrong.