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

27 lines
455 B
SCSS
Raw Normal View History

2019-11-04 13:09:44 +00:00
.related {
margin: 5rem 0;
padding: 0.5rem;
width: 100%;
position: relative;
2019-11-04 13:09:44 +00:00
@include flexbox();
@include align-items(center);
@include flex-direction(column);
&__title {
2019-11-04 13:09:44 +00:00
@include themify($themes) {
color: themed('related-header-title-color');
}
}
&-ul {
@include align-self(center);
list-style-type: disc;
}
&__link {
2019-11-04 13:09:44 +00:00
@include themify($themes) {
color: themed('related-link-color');
}
}
}