First of all, thank you for this awesome vault! I am doing electrochemistry as well and this looks like it will help out a lot in the future.
There is an issue when changing the font. Setting the font via obsidian appearance settings or via css snippets appeared impossible.
I identified the source at .obsidian\snippets\circular_progress.css:
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
the font-family needs to be omitted so that global font settings are not overridden. Interestingly, this applies to everything, not only note pages that have a circular progress widget implemented.
I'm new to github, so I dont really know how to propose changes myself, but I will try to read into it when I have time.
First of all, thank you for this awesome vault! I am doing electrochemistry as well and this looks like it will help out a lot in the future.
There is an issue when changing the font. Setting the font via obsidian appearance settings or via css snippets appeared impossible.
I identified the source at .obsidian\snippets\circular_progress.css:
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');*{margin: 0;padding: 0;box-sizing: border-box;font-family: 'Roboto', sans-serif;}the
font-familyneeds to be omitted so that global font settings are not overridden. Interestingly, this applies to everything, not only note pages that have a circular progress widget implemented.I'm new to github, so I dont really know how to propose changes myself, but I will try to read into it when I have time.