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
|
@ -17,4 +17,16 @@ input {
|
||||||
border-radius: var(--rounded-md);
|
border-radius: var(--rounded-md);
|
||||||
padding: .25rem;
|
padding: .25rem;
|
||||||
border: 1px solid var(--gray-light);
|
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