commit 84e0bc9a7f2e919049130e6839e26ded7ead6126
parent 78a8b167de8452bf852d2564b82d1ebda29d8653
Author: RobinLinus <RobinLinus@users.noreply.github.com>
Date: Mon, 1 Nov 2021 18:21:02 +0100
Merge pull request #340 from Bellisario/patch-3
Resolve image too big bug modifying style
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/client/styles.css b/client/styles.css
@@ -718,9 +718,9 @@ x-dialog x-paper {
}
/* Image Preview */
#img-preview{
- max-width:100%;
- max-height:100%;
-
+ max-height: 50vh;
+ margin: auto;
+ display: block;
}