From f418ee25b00c0280fe3a9f827d973774248f6958 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Thu, 10 Jan 2019 17:10:49 +0100 Subject: [PATCH] Fix dark theme issue on friends list on mobiles --- assets/css/dark_theme.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/assets/css/dark_theme.css b/assets/css/dark_theme.css index a9962b6e..c806d823 100644 --- a/assets/css/dark_theme.css +++ b/assets/css/dark_theme.css @@ -231,6 +231,12 @@ fieldset[disabled] .form-control { } } +@media screen and (max-width: 513px) { + #friendsList { + background-color: var(--black5); + } +} + #friendsList h4 { color: var(--white); }