diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-07-24 20:33:26 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-07-24 20:33:26 +0100 |
commit | f9a1d25c577c7b04c3350503f24fad0b372026b3 (patch) | |
tree | 096bca3a907e0ada189ed155e7fc9de891d59351 | |
parent | 8fe7bcfb71289060242c3922e63709b40029010d (diff) | |
download | cheatdb-f9a1d25c577c7b04c3350503f24fad0b372026b3.tar.xz |
Fix unreadable dropdown text
Fixes #74
-rw-r--r-- | app/scss/components.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/scss/components.scss b/app/scss/components.scss index a90a510..714f453 100644 --- a/app/scss/components.scss +++ b/app/scss/components.scss @@ -99,6 +99,10 @@ a:hover { font-size: 100%; } +select > * { + color: #222; +} + input[type=text], input[type=password], textarea, select, .bulletselector { text-align: left; } |