Fix wrong shadow color

This commit is contained in:
Lim Chee Aun 2023-01-27 14:35:44 +08:00
parent 912506afcc
commit 77c1b36a1f
2 changed files with 3 additions and 2 deletions

View file

@ -814,8 +814,7 @@ button.carousel-dot:is(.active, [disabled].active) {
background-color: var(--bg-color) !important;
border: 1px solid var(--outline-color) !important;
border-radius: 8px;
box-shadow: 0 0 8px var(--bg-faded-color), 0 4px 8px var(--bg-faded-color),
0 2px 4px var(--bg-faded-color);
box-shadow: 0 3px 6px var(--drop-shadow-color);
text-align: left;
animation: appear 0.15s ease-in-out;
}

View file

@ -36,6 +36,7 @@
--img-bg-color: rgba(128, 128, 128, 0.2);
--loader-color: #1c1e2199;
--comment-line-color: #e5e5e5;
--drop-shadow-color: rgba(0, 0, 0, 0.15);
--timing-function: cubic-bezier(0.3, 0.5, 0, 1);
}
@ -69,6 +70,7 @@
--backdrop-color: rgba(0, 0, 0, 0.5);
--loader-color: #f0f2f599;
--comment-line-color: #565656;
--drop-shadow-color: rgba(0, 0, 0, 0.5);
}
}