mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
25 lines
415 B
SCSS
25 lines
415 B
SCSS
@import 'src/styles/variables.scss';
|
|
|
|
.title {
|
|
font: $font_12_semibold;
|
|
text-transform: uppercase;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: $gap / 2;
|
|
color: var(--gray_75);
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
&::after {
|
|
content: ' ';
|
|
display: flex;
|
|
height: 2px;
|
|
background-color: var(--gray_90);
|
|
flex: 1;
|
|
border-radius: 2px;
|
|
}
|
|
}
|