mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2026-01-30 09:48:12 +01:00
14 lines
251 B
SCSS
14 lines
251 B
SCSS
@import '~/advanced-css-reset/dist/reset.min.css';
|
|
|
|
// Override dark mode color scheme that causes dark inputs
|
|
:root {
|
|
color-scheme: light;
|
|
}
|
|
|
|
// Reset removes borders, restore for form elements
|
|
input,
|
|
textarea,
|
|
select {
|
|
border: 1px solid #ccc;
|
|
}
|