mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
replaced node-sass with sass
This commit is contained in:
parent
8ee5b09b65
commit
5c9fdf93db
39 changed files with 148 additions and 1162 deletions
|
@ -101,7 +101,7 @@
|
|||
}
|
||||
|
||||
.block_text {
|
||||
padding: $gap / 2 0;
|
||||
padding: $gap * 0.5 0;
|
||||
}
|
||||
|
||||
.date {
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
margin: $gap / 4 0 !important;
|
||||
margin: $gap * 0.25 0 !important;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0 !important;
|
||||
|
@ -58,7 +58,7 @@
|
|||
}
|
||||
|
||||
.preview {
|
||||
padding: 0 $gap / 2 0;
|
||||
padding: 0 $gap * 0.5 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
|
|
@ -24,20 +24,20 @@
|
|||
background: transparentize(black, 0.8);
|
||||
border-radius: 0 0 $radius $radius;
|
||||
flex-wrap: wrap;
|
||||
padding: $gap / 4;
|
||||
padding: $gap * 0.25;
|
||||
}
|
||||
|
||||
.button_column {
|
||||
padding: $gap / 4;
|
||||
padding: $gap * 0.25;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.uploads {
|
||||
padding: ($gap / 2);
|
||||
padding: ($gap * 0.5);
|
||||
display: grid;
|
||||
grid-column-gap: $gap / 2;
|
||||
grid-row-gap: $gap / 2;
|
||||
grid-column-gap: $gap * 0.5;
|
||||
grid-row-gap: $gap * 0.5;
|
||||
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue