aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass/include/_mixins.scss
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/sass/include/_mixins.scss')
-rw-r--r--client/src/sass/include/_mixins.scss16
1 files changed, 14 insertions, 2 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss
index 9b18f6354..37bd404dd 100644
--- a/client/src/sass/include/_mixins.scss
+++ b/client/src/sass/include/_mixins.scss
@@ -63,13 +63,25 @@
63 63
64@mixin apply-svg-color ($color) { 64@mixin apply-svg-color ($color) {
65 /deep/ svg { 65 /deep/ svg {
66 path[fill="#000000"], g[fill="#000000"], rect[fill="#000000"], circle[fill="#000000"], polygon[fill="#000000"] { 66 path[fill="#000000"],
67 g[fill="#000000"],
68 rect[fill="#000000"],
69 circle[fill="#000000"],
70 polygon[fill="#000000"] {
67 fill: $color; 71 fill: $color;
68 } 72 }
69 73
70 path[stroke="#000000"], g[stroke="#000000"], rect[stroke="#000000"], circle[stroke="#000000"], polygon[stroke="#000000"] { 74 path[stroke="#000000"],
75 g[stroke="#000000"],
76 rect[stroke="#000000"],
77 circle[stroke="#000000"],
78 polygon[stroke="#000000"] {
71 stroke: $color; 79 stroke: $color;
72 } 80 }
81
82 stop[stop-color="#000000"] {
83 stop-color: $color;
84 }
73 } 85 }
74} 86}
75 87