gists/2012.scss.column-separator.scss

15 lines
234 B
SCSS
Raw Permalink Normal View History

2025-05-03 18:48:38 +02:00
/* vertical ruler using pseudo-elements */
@mixin columnseparator {
@extend .relative;
&:before {
content: '';
position: absolute;
top: 0;
width: 3px;
background: #eee;
left: 681px;
bottom: 0;
}
}