diff --git a/src/components/P1/Grid/GridStyles.css b/src/components/P1/Grid/GridStyles.css index 8ae5dcb..66b8c60 100644 --- a/src/components/P1/Grid/GridStyles.css +++ b/src/components/P1/Grid/GridStyles.css @@ -1,7 +1,7 @@ .grid-grid { display: grid; - grid-template-columns: 25% 25% 25%; - grid-template-rows: 5% 5%; + grid: + "top-left top-mid top-right" 5% "bot-left bot-mid bot-right" 5% / 25% 25% 25%; gap: 44.5% 0.5%; margin-block: 15vh; grid-auto-flow: row; @@ -9,9 +9,6 @@ align-content: center; justify-items: center; align-items: center; - grid-template-areas: - "top-left top-mid top-right" - "bot-left bot-mid bot-right"; } .top-left { diff --git a/src/components/P1/Message/Message.astro b/src/components/P1/Message/Message.astro index 1e09413..88597a0 100644 --- a/src/components/P1/Message/Message.astro +++ b/src/components/P1/Message/Message.astro @@ -3,8 +3,14 @@ import "./MessageStyles.css"; ---