Hey guys. I recently migrated to Joplin from Evernote... Loving it so far.
I had a quick query.
Is there a way to change the font-family of the app? Just to be clear, I'm not referring to the font-family of the Editor / Markdown Preview... But the whole of the app.
You almost have it, just need an !important. This is because most of the styles are applied directly to the elements. Changing the font will also override the font for the icons, so you might want to add that back:
* {
font-family: 'Work Sans' !important;
}
.fa {
font: normal normal normal 14px/1 ForkAwesome !important;
}
Wow, my solution broke almost immediately. The font was switched in 1.0.209, so all the icons disappeared. When you update to 1.0.209 you will need to change to:
Hmm, yes, looks like this also is affected by how the icon font works in the new version Share your CSS. Before, each icon had the class of .fa, .far, or .fas, but that is no longer true. Unfortunately not a quick fix this time, will need to find each icon class separately to override.