From a99d9e596966e1a4848f52b60013805c7a080f7d Mon Sep 17 00:00:00 2001 From: mbecker20 Date: Wed, 8 Feb 2023 05:56:09 +0000 Subject: [PATCH] make update menu wider --- frontend/src/components/update/UpdateMenu.tsx | 2 +- frontend/src/components/update/update.module.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/update/UpdateMenu.tsx b/frontend/src/components/update/UpdateMenu.tsx index 39f14c0a8..e52805646 100644 --- a/frontend/src/components/update/UpdateMenu.tsx +++ b/frontend/src/components/update/UpdateMenu.tsx @@ -66,7 +66,7 @@ const UpdateSummary: Component<{ update: UpdateType }> = (p) => { gap="0.5rem" class="card light shadow" gridTemplateColumns="1fr 1fr" - style={{ width: "40rem", "max-width": "90vw" }} + style={{ width: "100%", "box-sizing": "border-box" }} > status:

{p.update.status.replaceAll("_", " ")}

diff --git a/frontend/src/components/update/update.module.scss b/frontend/src/components/update/update.module.scss index 2f49256c3..cd7fb0ebd 100644 --- a/frontend/src/components/update/update.module.scss +++ b/frontend/src/components/update/update.module.scss @@ -48,8 +48,8 @@ overflow-wrap: anywhere; /* word-wrap: break-word; */ tab-size: 2; - width: 40rem; - max-width: 90vw; + width: 1000px; + max-width: 80vw; box-sizing: border-box; background-color: rgba(c.$darkgrey, 0.6); padding: 1rem;