fix: share button copy state -> dark theme

This commit is contained in:
Cory Dransfeldt 2024-02-22 16:24:08 -08:00
parent 8548ea997b
commit 7a681e9b06
No known key found for this signature in database

View file

@ -4,6 +4,7 @@ webcare-webshare {
}
button {
color: var(--text-color);
background: transparent;
padding: 0;
}
@ -11,22 +12,4 @@ button {
button,
button > svg {
cursor: pointer;
}
input {
border-radius: var(--rounded-md);
padding: .25rem;
border: 1px solid var(--gray-light);
}
:root body.theme__dark {
button {
color: var(--text-color);
}
}
@media (prefers-color-scheme: dark) {
button {
color: var(--text-color);
}
}