From cf321fc68a413703ba695c28c69649f9aa4cf273 Mon Sep 17 00:00:00 2001 From: Bradley Shellnut Date: Sun, 30 Oct 2022 23:08:33 -0500 Subject: [PATCH] Change max width of main tag, fix button icon formatting, and change description transistions. --- src/routes/+layout.svelte | 7 ++- src/routes/game/[id]/+page.svelte | 91 +++++++++++++++++-------------- 2 files changed, 55 insertions(+), 43 deletions(-) diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index a56e4d4..c78838a 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -129,11 +129,12 @@ max-width: 850px; margin: 0 auto; padding: 2rem 0rem; - max-width: 80%; + max-width: 80vw; - @media (min-width: 1500px) { - max-width: 60%; + @media (min-width: 1600px) { + max-width: 65vw; } + box-sizing: border-box; } diff --git a/src/routes/game/[id]/+page.svelte b/src/routes/game/[id]/+page.svelte index 86b442d..49017cc 100644 --- a/src/routes/game/[id]/+page.svelte +++ b/src/routes/game/[id]/+page.svelte @@ -1,5 +1,5 @@