23 lines
429 B
SCSS
23 lines
429 B
SCSS
.list {
|
|
&__header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 1rem;
|
|
margin-bottom: 1.5rem;
|
|
font-family: $title-font;
|
|
|
|
&--title {
|
|
@include themify($themes) {
|
|
color: themed('list-header-title-color');
|
|
}
|
|
}
|
|
|
|
&--desc {
|
|
font-family: $content-font;
|
|
font-weight: italic;
|
|
padding: 1rem;
|
|
line-height: 1.7rem;
|
|
}
|
|
}
|
|
} |