From 7dc6d5eb8a3dbe4207872621c70f48a0f8d24e20 Mon Sep 17 00:00:00 2001 From: Jon Dough <49297268+jetstream0@users.noreply.github.com> Date: Thu, 22 Jun 2023 20:36:53 +0900 Subject: [PATCH] styling changes --- styles/style.css | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/styles/style.css b/styles/style.css index 7504a8c..4328327 100644 --- a/styles/style.css +++ b/styles/style.css @@ -7,15 +7,15 @@ html, body { #grid-container { display: grid; - grid-template-columns: auto auto; + grid-template-columns: 50vw 50vw; height: 100vh; width: 100vw; } .section { padding: 17px; - height: 100%; - width: 49vw; + height: 100vh; + width: 100%; box-sizing: border-box; } @@ -42,6 +42,8 @@ html, body { } #rendered-text { + height: 100%; + overflow-y: scroll; padding: 5px; word-break: break-word; font-family: Arial, sans-serif; @@ -84,4 +86,16 @@ html, body { .mobile-only { display: block; } + + #grid-container { + grid-template-columns: auto; + } + + .section { + height: 60vh; + } + + #see-docs { + float: initial; + } }