mirror of
https://github.com/peterczegledy/Obsidian-markdown-columns.git
synced 2026-07-22 08:29:18 +00:00
13 lines
No EOL
209 B
CSS
13 lines
No EOL
209 B
CSS
.markdown-columns-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(
|
|
auto-fit,
|
|
minmax(250px, 1fr)
|
|
);
|
|
gap: 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
.markdown-column {
|
|
min-width: 0;
|
|
} |