fix: share button copy state -> dark theme
This commit is contained in:
parent
7789e5831b
commit
93f756ac94
1 changed files with 12 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
Reference in a new issue