fix(scss/global): Inherit colors for input and textarea (#541)
This commit is contained in:
parent
fc46835dec
commit
1852f4842f
|
@ -82,6 +82,12 @@ input {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fixes gray/black background when using a dark GTK theme
|
||||||
|
input, textarea {
|
||||||
|
background: inherit;
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
button, .button {
|
button, .button {
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
background: var(--button-bg);
|
background: var(--button-bg);
|
||||||
|
|
Loading…
Reference in New Issue