style: add line to titles

This commit is contained in:
MAZE
2023-10-31 19:53:08 +03:30
parent ef825cae68
commit ec1def0419
4 changed files with 44 additions and 12 deletions

View File

@@ -1,11 +1,24 @@
.why {
padding-bottom: 80px;
& .title {
margin-bottom: 12px;
font-family: var(--font-display);
font-size: var(--font-lg);
font-weight: 600;
& .titleWrapper {
display: flex;
align-items: center;
column-gap: 15px;
& .title {
margin-bottom: 12px;
font-family: var(--font-display);
font-size: var(--font-lg);
font-weight: 600;
}
& .line {
height: 1px;
flex-grow: 1;
background: linear-gradient(90deg, var(--color-neutral-300), transparent);
transform: translateY(-0.188rem);
}
}
& .reasons {