feat: adjust color on dark mode
This commit is contained in:
parent
0e48837eca
commit
db0e43ddbb
1 changed files with 5 additions and 1 deletions
|
|
@ -1040,7 +1040,7 @@ async function getWorkerFromCriteria(
|
|||
/>
|
||||
|
||||
<div class="column surface-0 fullscreen">
|
||||
<div class="color-bar">
|
||||
<div class="color-bar" :class="{ dark: $q.dark.isActive }">
|
||||
<div class="orange-segment"></div>
|
||||
<div class="yellow-segment"></div>
|
||||
<div class="gray-segment"></div>
|
||||
|
|
@ -2485,6 +2485,10 @@ async function getWorkerFromCriteria(
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
.color-bar.dark {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.orange-segment {
|
||||
background-color: var(--yellow-7);
|
||||
flex-grow: 4;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue