Commit 919bb0d1 authored by Lyza Danger Gardner's avatar Lyza Danger Gardner

Add border-radius variable

parent 4029b1d9
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
@include reset-native-btn-styles; @include reset-native-btn-styles;
@include layout.row(center, center); @include layout.row(center, center);
padding: 0.5em; padding: 0.5em;
border-radius: 2px; border-radius: var.$border-radius;
border: none; border: none;
// Icon // Icon
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
@mixin form-input { @mixin form-input {
@include utils.font--medium; @include utils.font--medium;
@include utils.border; @include utils.border;
border-radius: 2px; border-radius: var.$border-radius;
padding: 0.5em 0.75em; padding: 0.5em 0.75em;
font-weight: normal; font-weight: normal;
color: var.$color-text-light; color: var.$color-text-light;
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
background-color: var.$grey-mid; background-color: var.$grey-mid;
height: 35px; height: 35px;
border: none; border: none;
border-radius: 2px; border-radius: var.$border-radius;
font-weight: bold; font-weight: bold;
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
@mixin card-frame { @mixin card-frame {
@include utils.border; @include utils.border;
@include utils.shadow; @include utils.shadow;
border-radius: 2px; border-radius: var.$border-radius;
background-color: var.$color-background; background-color: var.$color-background;
} }
......
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
$hover-background-color: var.$grey-6; $hover-background-color: var.$grey-6;
$h-padding: 9px; $h-padding: 9px;
$height: 35px; $height: 35px;
$border-radius: 2px;
$arrow-indicator-width: 26px; $arrow-indicator-width: 26px;
height: $height; height: $height;
...@@ -67,8 +66,8 @@ ...@@ -67,8 +66,8 @@
border: none; border: none;
background-color: var.$grey-mid; background-color: var.$grey-mid;
border-top-right-radius: $border-radius; border-top-right-radius: var.$border-radius;
border-bottom-right-radius: $border-radius; border-bottom-right-radius: var.$border-radius;
&:hover, &:hover,
button[aria-expanded='true'] & { button[aria-expanded='true'] & {
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
border-bottom: none; border-bottom: none;
background-color: white; background-color: white;
border-radius: 0.15em 0.15em 0 0; border-radius: var.$border-radius var.$border-radius 0 0;
width: 100%; width: 100%;
margin-bottom: -0.1em; margin-bottom: -0.1em;
padding: 5px 5px; padding: 5px 5px;
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
@include utils.border; @include utils.border;
color: var.$color-text; color: var.$color-text;
background: var.$grey-1; background: var.$grey-1;
border-radius: 2px 0 0 2px; border-radius: var.$border-radius 0 0 var.$border-radius;
border-right-width: 0; border-right-width: 0;
padding: 2px 0.5em; padding: 2px 0.5em;
} }
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
color: var.$grey-mid; color: var.$grey-mid;
background-color: var.$grey-1; background-color: var.$grey-1;
padding: 0 0.5em; padding: 0 0.5em;
border-radius: 0 2px 2px 0; border-radius: 0 var.$border-radius var.$border-radius 0;
&:hover { &:hover {
background-color: var.$grey-2; background-color: var.$grey-2;
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
margin: 0.25em 0.5em 0.25em 0; margin: 0.25em 0.5em 0.25em 0;
padding: 2px 0.5em; padding: 2px 0.5em;
background: var.$grey-0; background: var.$grey-0;
border-radius: 2px; border-radius: var.$border-radius;
} }
&__link, &__link,
......
...@@ -108,6 +108,7 @@ $zindex-tooltip: 20; ...@@ -108,6 +108,7 @@ $zindex-tooltip: 20;
// ------------------------- // -------------------------
$bucket-bar-width: 22px; $bucket-bar-width: 22px;
$top-bar-height: 40px; $top-bar-height: 40px;
$border-radius: 2px;
$color-border: $grey-3; $color-border: $grey-3;
$border-width: 1px; $border-width: 1px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment