From 83e71821a3afcedfaea7afdf79dac3d62e9f5321 Mon Sep 17 00:00:00 2001 From: Ashley Date: Wed, 14 Dec 2022 16:54:38 +0000 Subject: [PATCH] add watch-page grid --- css/poketube.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/css/poketube.css b/css/poketube.css index 89309ecb..ffd21622 100644 --- a/css/poketube.css +++ b/css/poketube.css @@ -108,7 +108,7 @@ a { border-radius: 25px; margin: 10px; margin-top: 0px; - margin-left: 24px; + margin-left: 0px; height: -moz-fit-content; height: fit-content; justify-self: center; @@ -318,8 +318,7 @@ a { border: 1px white solid; } - - + .video-player-container { max-width: max-content; margin: inherit; @@ -328,3 +327,12 @@ a { aspect-ratio: 16 / 9; } + +.watch-page { + display: grid; + grid-template-columns: repeat(2, auto); + + --gutter: 1.67em; + gap: var(--gutter); + margin-inline: var(--gutter); +}