Files
tabler/core/scss/utils/_background.scss
T
2026-08-06 00:46:56 +02:00

18 lines
285 B
SCSS

@use '../config' as *;
.bg-white-overlay {
color: $white;
background-color: rgba($light, 0.24);
}
.bg-dark-overlay {
color: $white;
background-color: rgba($dark, 0.24);
}
.bg-cover {
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}