From 243782a2a4df0f45bdbb7d454a2cae3d4450a9f2 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sat, 23 Jan 2021 11:54:17 -0600 Subject: [PATCH] Fixes --- electron/Index.vue | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/electron/Index.vue b/electron/Index.vue index ff6ba35..5817f64 100644 --- a/electron/Index.vue +++ b/electron/Index.vue @@ -669,25 +669,30 @@ } } - .word-definition-viewer { - .modal-content { - min-height: 75%; - } + .modal { + .word-definition-viewer { + max-width: 50rem !important; + width: 50% !important; + min-width: 22rem !important; - .definition-wrapper { - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - margin-left: 20px; - margin-right: 20px; + .modal-content { + min-height: 75%; + } - webview { - height: 100%; - padding-bottom: 10px; + .definition-wrapper { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + margin-left: 20px; + margin-right: 20px; + + webview { + height: 100%; + padding-bottom: 10px; + } } } - }