gists/2012.scss.column-separator.scss

14 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;
}
}