Files
Notes/.obsidian/snippets/wide-dashboard.css
2025-10-22 22:13:54 +02:00

30 lines
767 B
CSS

/* Wide layout only for notes with cssclass: wide-dashboard */
.wide-dashboard .markdown-source-view,
.wide-dashboard .markdown-preview-view {
max-width: 100% !important;
width: 100% !important;
padding-left: 1rem;
padding-right: 1rem;
}
/* Make Dataview and Columns plugin blocks span full width */
.wide-dashboard .dataviewjs-rendered,
.wide-dashboard .markdown-preview-section {
max-width: 100% !important;
width: 100% !important;
}
/* Optional: reduce padding/margins for tighter dashboard look */
.wide-dashboard .markdown-preview-view {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
/* Columns plugin fine-tuning */
.wide-dashboard .callout[data-callout="col"] {
width: 100% !important;
margin: 0 !important;
padding: 0 !important;
}