Refactor redundant variable

pull/1544/head
Alex P 2017-05-23 10:20:38 -07:00
parent 555e80cb66
commit a61ac781da
1 changed files with 3 additions and 4 deletions
ui/src/style/layout

View File

@ -6,7 +6,6 @@
$sidebar-width: 60px; $sidebar-width: 60px;
$sidebar-menu-gutter: 30px; $sidebar-menu-gutter: 30px;
$sidebar-menu-indent: 13px; $sidebar-menu-indent: 13px;
$sidebar-radius: 4px;
$sidebar-hover: $g8-storm; $sidebar-hover: $g8-storm;
$sidebar-item-hover: $g7-graphite; $sidebar-item-hover: $g7-graphite;
@ -145,7 +144,7 @@ $sidebar-logo-color: $g8-storm;
} }
&__menu { &__menu {
border-radius: 0 $sidebar-radius $sidebar-radius 0; border-radius: 0 $radius $radius 0;
background: $sidebar-hover; background: $sidebar-hover;
opacity: 0; opacity: 0;
transition: opacity 0.25s ease; transition: opacity 0.25s ease;
@ -206,12 +205,12 @@ $sidebar-logo-color: $g8-storm;
// Rounding top outside corner to match container // Rounding top outside corner to match container
&:first-child { &:first-child {
border-top-right-radius: $sidebar-radius; border-top-right-radius: $radius;
} }
// Rounding bottom outside corner of match container // Rounding bottom outside corner of match container
&:last-child { &:last-child {
border-bottom-right-radius: $sidebar-radius; border-bottom-right-radius: $radius;
} }
// Used for sub-navigation // Used for sub-navigation