Files
FixIt/assets/css/_mixin/_loading.scss
T
2025-12-20 23:20:54 +08:00

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);
}