18 lines
327 B
CSS
18 lines
327 B
CSS
.gh-section-title {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 2.4rem;
|
|
font-size: 1.2rem;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.gh-section-title::after {
|
|
flex-grow: 1;
|
|
height: 1px;
|
|
margin-left: 1.6rem;
|
|
content: "";
|
|
background-color: var(--color-light-gray);
|
|
}
|