#315 viewer: use 1/5 for screen edge width ratio in portrait

This commit is contained in:
Thibault Deckers 2022-09-05 15:52:48 +02:00
parent 7ef87c125c
commit 39f7eda873

View file

@ -422,7 +422,7 @@ class _EntryPageViewState extends State<EntryPageView> {
double get sideRatio {
switch (context.read<MediaQueryData>().orientation) {
case Orientation.portrait:
return 1 / 4;
return 1 / 5;
case Orientation.landscape:
return 1 / 8;
}