From bda0d36f9a80d91dd170893149307d30273c924a Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Date: Mon, 26 Jun 2023 15:39:02 +0200 Subject: [PATCH] refactor: rename grid area --- src/pages/layout.css | 10 +++++----- src/pages/stream-page.css | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pages/layout.css b/src/pages/layout.css index be54589..f55f354 100644 --- a/src/pages/layout.css +++ b/src/pages/layout.css @@ -2,7 +2,7 @@ display: grid; grid-template-areas: "header" - "video-content" + "main-content" "profile" "chat"; grid-template-rows: 64px 230px 56px min-content; @@ -15,7 +15,7 @@ display: grid; grid-template-areas: "header" - "video-content"; + "main-content"; grid-template-rows: 64px 1fr; grid-template-columns: 1fr; } @@ -38,8 +38,8 @@ display: grid; grid-template-areas: "header header" - "video-content profile" - "video-content chat"; + "main-content profile" + "main-content chat"; grid-template-rows: 64px min-content; grid-template-columns: minmax(600px, 1fr) min-content; gap: 0; @@ -56,7 +56,7 @@ grid-template-rows: unset; grid-template-areas: "header header" - "video-content chat" + "main-content chat" "profile chat"; gap: 0; } diff --git a/src/pages/stream-page.css b/src/pages/stream-page.css index 4ac6bff..01e7fc1 100644 --- a/src/pages/stream-page.css +++ b/src/pages/stream-page.css @@ -1,5 +1,5 @@ .video-content { - grid-area: video-content; + grid-area: main-content; }