1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00
This commit is contained in:
Fedor Katurov 2020-04-18 14:37:14 +07:00
parent 81c9a5d7b3
commit 41a35f1490
9 changed files with 87 additions and 151 deletions

View file

@ -152,3 +152,23 @@ $input_shadow_filled: $input_shadow;
@content;
}
}
@mixin title_with_line {
font: $font_14_semibold;
text-transform: uppercase;
color: transparentize(white, 0.3);
flex-direction: row;
display: flex;
align-items: center;
& > * {
padding-right: $gap;
}
&:after {
content: ' ';
flex: 1;
height: 2px;
background: transparentize(white, 0.95);
}
}