mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-18 08:22:17 +03:00
73d85935ba
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
14 lines
215 B
SCSS
14 lines
215 B
SCSS
@mixin bg-fullsize {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
@mixin bg-layer($color, $opacity) {
|
|
@include bg-fullsize;
|
|
background: $color;
|
|
opacity: $opacity;
|
|
}
|