mirror of
https://github.com/mntno/obsidian-come-through.git
synced 2026-07-22 05:47:56 +00:00
30 lines
797 B
CSS
30 lines
797 B
CSS
|
|
|
|
div.come-through-workspace-leaf-content .view-content {
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* <div class="markdown-reading-view" style="width: 100%; height: 100%;"> */
|
|
div.come-through-workspace-leaf-content .markdown-reading-view {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
div.come-through-workspace-leaf-content :lang(th) {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
/* Apr 25, 2026: Obsidian zeroes --view-top-spacing for markdown views via:
|
|
*
|
|
* .workspace-leaf-content[data-type="markdown"] {
|
|
* --view-top-spacing: 0;
|
|
* }
|
|
*
|
|
* Custom views have a different data-type and do not get this automatically.
|
|
* Without it, double top spacing occurs when "Full screen" or "Floating
|
|
* navigation" is enabled (Appearance, mobile v1.11.6+).
|
|
*/
|
|
div.come-through-workspace-leaf-content {
|
|
--view-top-spacing: 0;
|
|
}
|