Adjust zoomin tiddler width for narrow screens

Fixes #1725

@felixhayashi could you verify that this works for you?
This commit is contained in:
Jermolene 2015-05-11 20:57:02 +01:00
parent a961a40ece
commit af1096f6fc
1 changed files with 8 additions and 1 deletions

View File

@ -1041,7 +1041,14 @@ html body.tc-body.tc-single-tiddler-window {
position: absolute;
display: block;
width: 100%;
width: calc(100% - 84px);
}
@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {
.tc-storyview-zoomin-tiddler {
width: calc(100% - 84px);
}
}
/*