Closed dangerstudios closed 2 years ago
You can find fonts related codes in the file Asset/dev/basics.css
line 8.
Please follow the instruction here to edit:
https://github.com/greyaz/ThemeRevision#other-styles
ok cool, I've got that in there, how do I link it to the font?
--style-fontfamily: "IBM Plex Mono"; /* "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; */
Your code should work after refresh the browser if you have installed this font in your computer. But "IBM plex Mono" is not a system default font, I recommend you approach it in another way:
Settings > Application settings
in Kanboard
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital@0;1&display=swap');
body{ font-family: 'IBM Plex Mono', monospace !important; }
ah ok, I'll give it a go , cheers!
Your code should work after refresh the browser if you have installed this font in your computer. But "IBM plex Mono" is not a system default font, I recommend you approach it in another way:
- Goto
Settings > Application settings
in Kanboard- Paste the codes below into "Custom Stylesheet":
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital@0;1&display=swap'); body{ font-family: 'IBM Plex Mono', monospace !important; }
yes totally works now, cheers!
👍
how would this be done?
thanks in advance