stylesheets: fix font of dropdown items on Firefox
Styling `<select>` elements is notoriously hard. Here, it seems that Firefox doesn't handle custom fonts on `<option>` elements. As we have no fallback font, the browser uses its default font, Times. Having fallback fonts is good practice anyway.
This commit is contained in:
parent
9ec2e4edf6
commit
1f69c6c6eb
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
@import "colors";
|
||||
|
||||
%new-type {
|
||||
font-family: "Muli";
|
||||
font-family: "Muli", system-ui, -apple-system, sans-serif;
|
||||
color: $black;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue