Hoe do you change the default font for uikit? UIKit
The default font is
"Helvetica Neue",Helvetica,Arial,sans-serif
and its set on the html element tag. If i change this font on my custom style in the html tag to something else it doesn't overwrite the changes. I can use important which does change things:
html {
font: 'Raleway', sans-serif !important;
}
This changes the global font as expected but font-awesome obviously no longer works because the !important is over writing it. Any ideas?