mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-11-11 07:38:58 +01:00
320dc02941
Background color of the textarea in the settings export was not readable in the dark theme when the value was invalid
13 lines
199 B
CSS
13 lines
199 B
CSS
html, body {
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#settings {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
height: 95%;
|
|
}
|
|
#settings.invalid {
|
|
background-color: var(--input-error-background-color);
|
|
} |