I have a small stylesheet tweak I’ve been using in my wikis to get multiple tiddlers visible at once horizontally on a large display. It’s not a full layout (nor do the columns have identity) like the Multi-Column Layout.
Folks may find it useful, so here’s $:/phajas/stylesheets/multicolumn
. When the sidebar collapses, it’ll turn into a “focused” mode to just show one tiddler horizontally.
@media (min-width: 960px) {
.tc-story-river {
display: flex;
flex-wrap: wrap;
}
.tc-tiddler-view-frame, .tc-tiddler-edit-frame {
min-width: 600px;
}
}
.tc-tiddler-view-frame, .tc-tiddler-edit-frame {
margin: 1px;
padding: 6px;
<$list filter="[[$:/state/sidebar]get[text]search[yes]]">
flex: 1 1 0;
</$list>
}