We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the Bug The --code-size CSS variable uses a percentage:
--code-size
--font-smaller
0.875em
em
100%
Potential Fix Replace --code-size: 100%; with --code-size: 1em;. The effect is the same.
--code-size: 100%;
--code-size: 1em;
In which mode does the bug occur?
Which editor are you using?
Which version of Obsidian are you using?
Checklist
Obsidian Settings → Appearance → Themes - Manage → Update
The text was updated successfully, but these errors were encountered:
thanks for the bug report! i'll look into it, as soon as I can.
Sorry, something went wrong.
Just made a pull request #45 with the change. Its only 1 line.
LEFD
No branches or pull requests
Describe the Bug
The
--code-size
CSS variable uses a percentage:--code-size
variable is set to--font-smaller
which has a value of0.875em
.--code-size
variable to be in terms ofem
.--code-size
variable is set to100%
.Potential Fix
Replace
--code-size: 100%;
with--code-size: 1em;
. The effect is the same.In which mode does the bug occur?
Which editor are you using?
Which version of Obsidian are you using?
Checklist
Obsidian Settings → Appearance → Themes - Manage → Update
).The text was updated successfully, but these errors were encountered: