Skip to content

Commit b62984b

Browse files
committed
frontend: fix inconsistent font
Button and Textarea had different fonts compared to the rest of the app. To improve the UI, we'd like to unify the font family.
1 parent 4ead007 commit b62984b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

frontends/web/src/style/layout.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@
116116
}
117117
}
118118

119+
button, textarea {
120+
font-family: inherit;
121+
}
122+
119123
.content {
120124
flex: 1;
121125
margin: 0 auto;
@@ -392,4 +396,4 @@
392396
.light-mode .show-in-darkmode,
393397
.dark-mode .show-in-lightmode {
394398
display: none;
395-
}
399+
}

0 commit comments

Comments
 (0)