mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
88dfed5486
// ignore-for-release
16 lines
355 B
SCSS
16 lines
355 B
SCSS
// Loading Mixin for before/after pseudo element
|
|
@mixin loading {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
backdrop-filter: blur(1rem);
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-image: var(#{$rootPrefix}loading-img);
|
|
background-size: 60px;
|
|
@include z-index(0, 10);
|
|
}
|