This is useful to create responsive layout using pure TW and CSS
<$list filter="[{$:/themes/tiddlywiki/vanilla/options/sidebarlayout}prefix[fluid-fixed]]">
calc(100vw - {{$:/themes/tiddlywiki/vanilla/metrics/sidebarwidth}} - 160px)
</$list>
<$list filter="[{$:/themes/tiddlywiki/vanilla/options/sidebarlayout}prefix[fixed-fluid]]">
calc({{$:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth}} - 110px)
</$list>
$:info/browser/screen/widthOthers might need a slightly different way to do this. Just to add my 2 cents I found some variables in https://tiddlywiki.com/#InfoMechanism. One was$:info/browser/screen/width
Forgive a silly question but what are the difference in vw/vh and using %?