mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-26 13:47:26 +03:00
951fd2ae10
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
14 lines
197 B
SCSS
14 lines
197 B
SCSS
@mixin bg-fullsize {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
@mixin bg-layer($color, $opacity) {
|
|
@include bg-fullsize;
|
|
background: $color;
|
|
opacity: $opacity;
|
|
}
|