Reset button/input font set by UA (#3038)
* fix: reset button/input fonts set by UA * fix: inherit line-height as wellzio/stable
parent
04d4c9779f
commit
21bdddcfbe
|
@ -44,6 +44,12 @@
|
|||
scrollbar-gutter: stable both-edges;
|
||||
}
|
||||
|
||||
/* Buttons and inputs have a font set by UA, so we'll have to reset that */
|
||||
button, input, textarea {
|
||||
font: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
/* Color theming */
|
||||
/* Default will always be white */
|
||||
:root {
|
||||
|
|
|
@ -48,6 +48,12 @@
|
|||
scrollbar-gutter: stable both-edges;
|
||||
}
|
||||
|
||||
/* Buttons and inputs have a font set by UA, so we'll have to reset that */
|
||||
button, input, textarea {
|
||||
font: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
/* Color theming */
|
||||
/* Default will always be white */
|
||||
:root {
|
||||
|
|
Loading…
Reference in New Issue