mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 21:31:28 +04:00
18 lines
285 B
SCSS
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;
|
|
}
|