fix: share button copy state -> dark theme

This commit is contained in:
Cory Dransfeldt 2024-02-22 16:13:20 -08:00
parent 7789e5831b
commit 93f756ac94
No known key found for this signature in database

View file

@ -18,3 +18,15 @@ input {
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);
}
}