Skip to content

Commit 81c0b1b

Browse files
fix: use variable for bg color (#15042)
1 parent f160a92 commit 81c0b1b

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

ui/src/components/inputs/AcceptDecline.vue

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<style scoped lang="scss">
3131
.accept-decline-bar {
32-
position: relative; // now flow inside parent footer-row
32+
position: relative;
3333
width: 100%;
3434
z-index: 1200;
3535
display: flex;
@@ -43,9 +43,8 @@
4343
display: flex;
4444
align-items: center;
4545
justify-content: space-between;
46-
background: rgba(30,32,42,0.95);
46+
background: var(--ks-background-input);
4747
padding: .75rem 1rem;
48-
box-shadow: 0 -4px 18px rgba(2,6,23,0.45);
4948
}
5049
5150
.left-slot {
@@ -57,10 +56,6 @@
5756
gap: .5rem;
5857
align-items: center;
5958
}
60-
61-
html.light & .bar-content {
62-
background: rgba(18,18,18,0.9);
63-
}
6459
}
6560
6661
.accept-decline-fade-enter-from {
@@ -79,3 +74,4 @@
7974
padding: 4px 12px;
8075
}
8176
</style>
77+

0 commit comments

Comments
 (0)