Vulcan/packages/base-styles/lib/stylesheets/_variables.scss
2016-03-25 11:30:01 +09:00

26 lines
365 B
SCSS

$hmargin: 10px;
$vmargin: 15px;
$border: 1px solid $light-border;
@mixin activeHover{
&:hover{
background: $active-color;
color: $white;
border-color: $active-color;
text-decoration: none;
}
}
@mixin flex-center{
display: flex;
align-items: center;
}
@mixin border-radius{
border-radius: .25rem;
}
@mixin border{
border: $border;
}