From ce3ef866a13eff998fcf6adf93c9247c564a7280 Mon Sep 17 00:00:00 2001 From: Cadence Ember Date: Sat, 20 Jun 2020 01:38:59 +1200 Subject: [PATCH] Make entire description area scrollable --- .../watch-video-description/watch-video-description.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/renderer/components/watch-video-description/watch-video-description.css b/src/renderer/components/watch-video-description/watch-video-description.css index e7035208..ef3c71c2 100644 --- a/src/renderer/components/watch-video-description/watch-video-description.css +++ b/src/renderer/components/watch-video-description/watch-video-description.css @@ -1,7 +1,10 @@ +.videoDescription { + overflow-y: auto; + max-height: 300px; +} + .description { font-family: 'Roboto', sans-serif; font-size: 17px; white-space: pre-wrap; - max-height: 300px; - overflow-y: auto; }