1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/styles/variables.scss
2019-06-04 04:06:11 +07:00

38 lines
743 B
SCSS

@import 'colors';
$cell: 256px;
$content_width: $cell * 4;
$gap: 10px;
$spc: $gap * 2;
$panel_radius: 1px;
$grid_line: 4px;
$input_height: 32px;
$input_radius: 2px;
$info_height: 24px;
@mixin outer_shadow() {
box-shadow: inset transparentize(white, 0.95) 0 1px,
inset transparentize(black, 0.5) 0 -1px;
}
@mixin inner_shadow() {
box-shadow: inset transparentize(white, 0.95) 0 -1px,
inset transparentize(black, 0.5) 0 1px;
}
@mixin input_shadow() {
box-shadow: inset transparentize(white, 0.92) 0 -1px,
inset transparentize(black, 0.8) 0 1px;
}
@mixin modal_mixin() {
position: fixed;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}