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:
Pierre de La Morinerie 2019-06-03 18:08:43 +02:00
parent 9ec2e4edf6
commit 1f69c6c6eb

View file

@ -1,6 +1,6 @@
@import "colors";
%new-type {
font-family: "Muli";
font-family: "Muli", system-ui, -apple-system, sans-serif;
color: $black;
}