33 lines
562 B
SCSS
33 lines
562 B
SCSS
.related {
|
|
margin: 2rem auto;
|
|
padding: 0.5rem;
|
|
width: 100%;
|
|
max-width: 700px;
|
|
position: relative;
|
|
|
|
@include flexbox();
|
|
@include align-items(center);
|
|
@include flex-direction(column);
|
|
|
|
&__title {
|
|
font-size: 32px;
|
|
|
|
@include themify($themes) {
|
|
color: themed('related-header-title-color');
|
|
}
|
|
}
|
|
|
|
&__link {
|
|
font-size: 16.8px;
|
|
font-family: $title-font;
|
|
|
|
@include themify($themes) {
|
|
color: themed('related-link-color');
|
|
}
|
|
}
|
|
|
|
&-ul {
|
|
@include align-self(center);
|
|
list-style-type: disc;
|
|
}
|
|
} |