From 5d09048fe4500858bc107e746f5e81a971986d1c Mon Sep 17 00:00:00 2001 From: n loewen Date: Wed, 20 Sep 2023 18:18:46 -0700 Subject: [PATCH] Change from grid to flexbox for monogram --- style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 827fd81..b923960 100644 --- a/style.css +++ b/style.css @@ -31,14 +31,15 @@ body { } .monogram { - display: grid; - grid-template-columns: 50% 50%; + display: flex; } .triangle { display: block; /* Because these are tags */ background-color: black; position: relative; /* Required for the absolute positioning of the triangle-label */ + width: 20vh; + height: 20vh; } .triangle-bottom {