mirror of
https://github.com/tuna/mirror-web.git
synced 2025-12-26 05:02:48 +00:00
18 lines
403 B
SCSS
18 lines
403 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;
|
|
}
|
|
}
|