fix: shadow dark mode
This commit is contained in:
parent
d9b77ca357
commit
04b1ded194
1 changed files with 2 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ const props = withDefaults(
|
||||||
<div class="row no-wrap" style="gap: var(--size-4)" :class="{ dark }">
|
<div class="row no-wrap" style="gap: var(--size-4)" :class="{ dark }">
|
||||||
<div
|
<div
|
||||||
v-for="v in props.branch"
|
v-for="v in props.branch"
|
||||||
class="no-padding shadow-2 stat-card"
|
class="no-padding stat-card"
|
||||||
:class="{ [`stat-card__${v.color}`]: true }"
|
:class="{ [`stat-card__${v.color}`]: true }"
|
||||||
:key="v.label"
|
:key="v.label"
|
||||||
>
|
>
|
||||||
|
|
@ -56,6 +56,7 @@ const props = withDefaults(
|
||||||
.stat-card {
|
.stat-card {
|
||||||
border-radius: var(--radius-2);
|
border-radius: var(--radius-2);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
box-shadow: var(--shadow-2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.stat-card__content {
|
.stat-card__content {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue