1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

fix search appearance

This commit is contained in:
Fedor Katurov 2025-02-07 06:07:37 +07:00
parent 24c66ccfdb
commit 9e79cba7bf
8 changed files with 94 additions and 179 deletions

View file

@ -1,7 +1,25 @@
@import "src/styles/variables.scss";
@import 'src/styles/variables.scss';
.title {
font: $font_12_semibold;
text-transform: uppercase;
opacity: 0.3;
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;
}
}