1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-24 22:33:16 +00:00

2nd attempt to fix overflowing content in vertical tabs

Previously we'd tried to fix it with word-break: break-word, but that broke other things (see 81f1e6af4e). This overflow: auto approach appears to be best practice.
This commit is contained in:
Jeremy Ruston 2019-10-20 10:45:27 +01:00
parent 588af44d4c
commit 46c90af308

View File

@ -1816,6 +1816,7 @@ html body.tc-body.tc-single-tiddler-window {
border-left: 1px solid <<colour tab-border>>;
-webkit-flex: 1 0 70%;
flex: 1 0 70%;
overflow: auto;
}
.tc-sidebar-lists .tc-tab-buttons {