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

fixed image uploads

This commit is contained in:
Fedor Katurov 2019-10-09 19:08:36 +07:00
parent 287b3efed2
commit 1974feb042
4 changed files with 30 additions and 47 deletions

View file

@ -1,7 +1,8 @@
@import "colors";
@import 'colors';
$cell: 256px;
$content_width: 1100px;
$cell: 320px;
$grid_line: 4px;
$content_width: $cell * 4 + $grid_line * 3;
$gap: 10px;
$spc: $gap * 2;
@ -9,8 +10,6 @@ $radius: 6px;
$cell_radius: 4px;
$panel_radius: $radius;
$grid_line: 4px;
$input_height: 36px;
$input_radius: $radius;
$info_height: 24px;
@ -25,9 +24,9 @@ $medium: 500;
$light: 300;
$extra_light: 200;
$font: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
"Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
$font: Montserrat, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji';
$font_48_semibold: $semibold 48px $font;
$font_24_bold: $bold 24px $font;
@ -89,7 +88,7 @@ $input_shadow_filled: $input_shadow;
position: $position;
&::after {
content: " ";
content: ' ';
position: absolute;
bottom: 0;
left: 0;
@ -107,7 +106,9 @@ $input_shadow_filled: $input_shadow;
}
@mixin tablet {
@media (max-width: 599px) { @content; }
@media (max-width: 599px) {
@content;
}
}
@mixin vertical_at_tablet {
@ -117,8 +118,12 @@ $input_shadow_filled: $input_shadow;
& > * {
margin: $gap/2 0 !important;
&:first-child { margin-top: 0 !important; }
&:last-child { margin-bottom: 0 !important; }
&:first-child {
margin-top: 0 !important;
}
&:last-child {
margin-bottom: 0 !important;
}
}
}
}