dpaste/client/scss/_mixins.scss

8 lines
163 B
SCSS
Raw Normal View History

2018-03-24 18:57:05 +11:00
// Vertical dotted separtor
@mixin separator($color: white, $margin: 4px) {
width: 0;
border-right: 2px dotted $color;
margin: 0 ($margin+2px) 0 $margin;
}