dpaste/client/scss/_mixins.scss
Martin Mahner ace0704f45 Redesign 🚀
2018-03-24 08:57:05 +01:00

7 lines
163 B
SCSS

// Vertical dotted separtor
@mixin separator($color: white, $margin: 4px) {
width: 0;
border-right: 2px dotted $color;
margin: 0 ($margin+2px) 0 $margin;
}