Alaguraj0361 4785c22a25
Some checks failed
Build and Deploy Build Output / build (push) Has been cancelled
first commit
2025-11-07 10:51:36 +05:30

29 lines
495 B
SCSS

@each $bgcolorMap, $value in $bgcolorMap {
.bg-#{$bgcolorMap} {
background-color: #{$value} !important;
}
}
.background-image,
[data-bg-src] {
@include background-content(no-repeat, cover, center center);
}
.bg-fluid {
@include background-content(no-repeat, 100% 100%, center center);
}
.bg-auto {
background-size: auto auto;
}
.bg-top-center {
background-size: auto;
background-position: top center;
}
.bg-repeat {
background-size: auto;
background-repeat: repeat;
}