mirror of
https://github.com/tuna/mirror-web.git
synced 2025-12-25 20:32:46 +00:00
20 lines
381 B
SCSS
20 lines
381 B
SCSS
@use "./bootstrap_vars" as bs;
|
|
@use "./utils.scss" as utils;
|
|
|
|
.status-fail,
|
|
.status-failed,
|
|
.status-paused {
|
|
--bs-table-bg: #fff4e3;
|
|
--bs-table-hover-bg: var(--bs-table-bg);
|
|
@include utils.dark {
|
|
--bs-table-bg: #524841;
|
|
}
|
|
}
|
|
.status-syncing {
|
|
--bs-table-bg: #e3fffd;
|
|
--bs-table-hover-bg: var(--bs-table-bg);
|
|
@include utils.dark {
|
|
--bs-table-bg: #254059;
|
|
}
|
|
}
|