From 5121ffd2e96387b5fae28ca0206385d3d3506c56 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sat, 23 Aug 2025 11:15:26 -0400 Subject: obsidian config with hacky zoom fix --- zoom.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 zoom.css (limited to 'zoom.css') diff --git a/zoom.css b/zoom.css new file mode 100644 index 0000000..220b1c3 --- /dev/null +++ b/zoom.css @@ -0,0 +1,22 @@ +/* zoom.css */ +/****************************************************************************/ +/* Adjust content and metadata styling. Not tabs. */ +/****************************************************************************/ +:root { + /* ADJUST THIS VALUE TO YOUR LIKING */ + --custom-font-size-base: 30px; + --custom-font-size: calc(1 * var(--custom-font-size-base)); + --custom-title-size: calc(2 * var(--custom-font-size-base)); +} + +.cm-contentContainer, +.metadata-container, +.is-live-preview, +.markdown-reading-view, +.markdown-preview-view { + font-size: var(--custom-font-size); +} + +.inline-title { + font-size: var(--custom-title-size); +} -- cgit v1.3.1