No notes defined.
<hr class="divider" />
<hr class="divider"/>
/* No context defined. */
$divider_styles: (
height: var(--bw-largest),
width: 124px,
background-color: $_accent-color,
) !default;
@import "_divider.settings";
@import "_divider.styles";
%divider {
@include not-on-desktop(){
width: (map.get($divider_styles, width) * .667);
}
[data-theme="accent"] & {
background-color: $_PAGE-COLOR;
}
}
$divider_styles: (
border-bottom: 1px solid rgba($_text-color, .2),
) !default;
%divider {
@include stack-spacing();
border: none;
display: block;
margin-left: auto;
margin-right: auto;
@include styles($divider_styles);
}
.divider {
@extend %divider;
}