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

replaced node-sass with sass

This commit is contained in:
Fedor Katurov 2022-01-28 11:09:21 +07:00
parent 8ee5b09b65
commit 5c9fdf93db
39 changed files with 148 additions and 1162 deletions

View file

@ -144,7 +144,7 @@
height: 20px;
font: $font_12_semibold;
padding: 0 15px;
border-radius: $radius / 2;
border-radius: $radius * 0.5;
&:global(.round) {
border-radius: 10px;
@ -153,7 +153,7 @@
.mini {
height: 26px;
border-radius: $radius / 2;
border-radius: $radius * 0.5;
&:global(.round) {
border-radius: 14px;
@ -204,13 +204,13 @@
}
.icon_left {
margin-right: $gap / 2 !important;
margin-right: $gap * 0.5 !important;
width: 20px;
height: 20px;
}
.icon_right {
margin-left: $gap / 2 !important;
margin-left: $gap * 0.5 !important;
width: 20px;
height: 20px;
}

View file

@ -34,20 +34,20 @@
.error {
position: absolute;
font: $font_12_semibold;
padding: 0 $gap / 2;
padding: 0 $gap * 0.5;
border-radius: 4px;
color: white;
background-color: $red;
bottom: 0;
right: $gap / 2;
right: $gap * 0.5;
transform: translate(0, 50%);
}
.title {
position: absolute;
top: $gap;
left: $gap / 2;
padding: 0 $gap / 2;
left: $gap * 0.5;
padding: 0 $gap * 0.5;
transform: translate(0, 0) scale(1);
font: $input_font;
transition: transform 0.25s;