make update menu wider

This commit is contained in:
mbecker20
2023-02-08 05:56:09 +00:00
parent 813b6c1182
commit a99d9e5969
2 changed files with 3 additions and 3 deletions

View File

@@ -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" }}
>
<Flex gap="0.5rem" alignItems="center">
status: <h2>{p.update.status.replaceAll("_", " ")}</h2>

View File

@@ -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;