mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
7 lines
163 B
SCSS
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;
|
|
}
|