fix: show modal close button with correct color in dark mode

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-03-27 14:54:30 +02:00
parent 3dc60407b6
commit 438a5466e0
3 changed files with 7 additions and 2 deletions

View file

@ -10,12 +10,12 @@
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
.btn-close {
color: $btn-close-color;
color: var(--bs-modal-color);
background: transparent escape-svg($btn-close-bg) center / $btn-close-width auto no-repeat; // include transparent for button elements
// Override <a>'s hover style
&:hover {
color: $btn-close-color;
color: var(--bs-modal-color);
}
&:focus {