From 3ad62f393c4f7f322283ae8704f3f02e84085146 Mon Sep 17 00:00:00 2001 From: CrumblyLiquid Date: Mon, 4 Oct 2021 21:37:27 +0200 Subject: [PATCH] Fix quote search popup width (#1944) by CrumblyLiquid * Quote search width fix Makes the width of the quote search responsive to the width of the screen * Set max-width to quote search --- src/sass/popups.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sass/popups.scss b/src/sass/popups.scss index 1be6cff9f..712ad3303 100644 --- a/src/sass/popups.scss +++ b/src/sass/popups.scss @@ -400,7 +400,8 @@ padding: 2rem; display: grid; gap: 1rem; - width: 1000px; + width: 80vw; + max-width: 1000px; height: 80vh; grid-template-rows: auto auto auto 1fr;