Vulcan/packages/base-styles/lib/stylesheets/_variables.scss
2016-03-25 10:45:28 +09:00

26 lines
347 B
SCSS

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