mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
14 lines
No EOL
278 B
SCSS
14 lines
No EOL
278 B
SCSS
@mixin horizontal-rules() {
|
|
&::before {
|
|
display: block;
|
|
font-size: map-get($base, font-size-h2);
|
|
color: $text-color-l;
|
|
text-align: center;
|
|
letter-spacing: map-get($spacers, 4);
|
|
content: "...";
|
|
}
|
|
}
|
|
|
|
.horizontal-rules {
|
|
@include horizontal-rules();
|
|
} |