editor theme

This commit is contained in:
Jan Prochazka
2020-11-12 11:55:42 +01:00
parent aa0501a729
commit a49f429f13
8 changed files with 40 additions and 3 deletions

View File

@@ -42,6 +42,22 @@ export default function ThemeHelmet() {
body *::-webkit-scrollbar-thumb:hover {
background-color: ${theme.scrollbar_background4};
}
input {
background-color: ${theme.input_background};
color: ${theme.input_font1};
}
select {
background-color: ${theme.input_background};
color: ${theme.input_font1};
}
textarea {
background-color: ${theme.input_background};
color: ${theme.input_font1};
}
`}</style>
</Helmet>
);