From a625a76e9e743d78f0ecb97231fd1de3cecde627 Mon Sep 17 00:00:00 2001 From: Andrea Somaini Date: Mon, 10 Dec 2018 13:24:12 +0100 Subject: [PATCH] Fixed blank text-fields with dark browser theme (#365) When using dark browser themes the text-fields' text-color becomes white, so the text in those white background text-fields is unreadable. Patched text-color so that it now is readable. --- src/components/Options/style.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Options/style.scss b/src/components/Options/style.scss index 34143e12..96520a5f 100644 --- a/src/components/Options/style.scss +++ b/src/components/Options/style.scss @@ -43,6 +43,7 @@ $horizontalPadding: 15px; .text-field { background: #fff; + color: #000; font: inherit; border: none; padding: 2px 0 2px 10px;