15 lines
234 B
SCSS
15 lines
234 B
SCSS
|
|
/* vertical ruler using pseudo-elements */
|
||
|
|
@mixin columnseparator {
|
||
|
|
@extend .relative;
|
||
|
|
|
||
|
|
&:before {
|
||
|
|
content: '';
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
width: 3px;
|
||
|
|
background: #eee;
|
||
|
|
left: 681px;
|
||
|
|
bottom: 0;
|
||
|
|
}
|
||
|
|
}
|