24 lines
410 B
SCSS
24 lines
410 B
SCSS
|
.section-title {
|
||
|
display: grid;
|
||
|
font-size: 1.2em;
|
||
|
grid-template-columns: auto 1fr;
|
||
|
margin-bottom: 1em;
|
||
|
margin-top: 1.3em;
|
||
|
.title-text {
|
||
|
color: black;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
&::before {
|
||
|
|
||
|
$square-size: 10px;
|
||
|
margin: 8px 15px 8px 8px;
|
||
|
content: '';
|
||
|
width: $square-size;
|
||
|
height: $square-size;
|
||
|
display: block;
|
||
|
background-color: $primary;
|
||
|
}
|
||
|
}
|