diff options
author | Chocobozzz <me@florianbigard.com> | 2019-01-17 11:30:47 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-01-17 11:34:29 +0100 |
commit | f2fab901df31a0e7081f4bb225f28e98798950b0 (patch) | |
tree | 59a7fc9b5d22837e66654e09429ccfa2555364c6 /client/src/sass/include | |
parent | dc094603cd9eccce3243a6b6ccec3416491f59d2 (diff) | |
download | PeerTube-f2fab901df31a0e7081f4bb225f28e98798950b0.tar.gz PeerTube-f2fab901df31a0e7081f4bb225f28e98798950b0.tar.zst PeerTube-f2fab901df31a0e7081f4bb225f28e98798950b0.zip |
Fix invisible things in dark mode
Diffstat (limited to 'client/src/sass/include')
-rw-r--r-- | client/src/sass/include/_mixins.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 8749649d3..5b3346508 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -57,11 +57,11 @@ | |||
57 | 57 | ||
58 | @mixin apply-svg-color ($color) { | 58 | @mixin apply-svg-color ($color) { |
59 | /deep/ svg { | 59 | /deep/ svg { |
60 | path[fill="#000000"], g[fill="#000000"], rect[fill="#000000"] { | 60 | path[fill="#000000"], g[fill="#000000"], rect[fill="#000000"], circle[fill="#000000"] { |
61 | fill: $color; | 61 | fill: $color; |
62 | } | 62 | } |
63 | 63 | ||
64 | path[stroke="#000000"], g[stroke="#000000"], rect[stroke="#000000"] { | 64 | path[stroke="#000000"], g[stroke="#000000"], rect[stroke="#000000"], circle[stroke="#000000"] { |
65 | stroke: $color; | 65 | stroke: $color; |
66 | } | 66 | } |
67 | } | 67 | } |