fix inconsistent font sizes

fixes #1174
This commit is contained in:
Damien Elmes 2021-05-19 19:00:09 +10:00
parent 363548e8a2
commit b20381afad
2 changed files with 5 additions and 4 deletions

View file

@ -22,10 +22,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
margin-left: 16px;
font-weight: bold;
}
:global(input, select) {
font-size: 16px;
}
</style>
<div>

View file

@ -48,3 +48,8 @@ html {
code {
color: var(--flag1-bg);
}
// override the default form sizes
input.form-control, select.form-select {
font-size: inherit;
}