hugo-theme-zzo/assets/sass/components/_hr.scss

13 lines
228 B
SCSS
Raw Normal View History

.hr-fade {
height: 1px;
@include themify($themes) {
color: themed('hr-color');
background-image: linear-gradient(
90deg,
transparent,
themed('hr-color') 50%,
transparent 100%
);
}
}