Skip to content
Prev Previous commit
Next Next commit
add border-radius-2, body-font-size, body-line-height
  • Loading branch information
shawnbot committed Nov 15, 2019
commit 7f3449c4b4ed2cabe01ac715195b0bd0d73de8d4
5 changes: 5 additions & 0 deletions src/theme/light.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ const promotions = [

// fixed
'border-radius',
'border-radius-2',

// typography
'body-font-size',
'body-line-height',

// functional
'border',
Expand Down
6 changes: 6 additions & 0 deletions src/theme/light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
--border-color-button: #{$border-color-button};
--bg-black-fade: #{$bg-black-fade};
--border-radius: #{$border-radius};
--border-radius-2: #{$border-radius-2};
--body-font-size: #{$body-font-size};
--body-line-height: #{$body-line-height};
--border: #{$border};
--border-color: #{$border-color};
--box-shadow: #{$box-shadow};
Expand Down Expand Up @@ -113,6 +116,9 @@
$border-color-button: var(--border-color-button) !global;
$bg-black-fade: var(--bg-black-fade) !global;
$border-radius: var(--border-radius) !global;
$border-radius-2: var(--border-radius-2) !global;
$body-font-size: var(--body-font-size) !global;
$body-line-height: var(--body-line-height) !global;
$border: var(--border) !global;
$border-color: var(--border-color) !global;
$box-shadow: var(--box-shadow) !global;
Expand Down