From fca5951eb1726707599a285396e85f4ebbc47227 Mon Sep 17 00:00:00 2001 From: Divyam Ahuja Date: Tue, 22 Feb 2022 17:17:26 +0530 Subject: [PATCH] update view page to full screen --- styles/Viewer.module.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/styles/Viewer.module.css b/styles/Viewer.module.css index 93abde0..8271f7b 100644 --- a/styles/Viewer.module.css +++ b/styles/Viewer.module.css @@ -1,7 +1,18 @@ +.container { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; + color: white; + align-items: flex-start; + justify-content: center; + } + .viewer { display: flex; color: white; width: 100%; + height: 100%; flex: 1; padding-top: 10px; }