mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-26 13:01:48 +03:00
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;
|
||
|
}
|