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.scss22
1 files changed, 11 insertions, 11 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss
index 80a090159..0b558a3f5 100644
--- a/client/src/sass/include/_mixins.scss
+++ b/client/src/sass/include/_mixins.scss
@@ -49,23 +49,23 @@
49 49
50@mixin apply-svg-color ($color) { 50@mixin apply-svg-color ($color) {
51 ::ng-deep svg { 51 ::ng-deep svg {
52 path[fill="#000000"], 52 path[fill="#000"],
53 g[fill="#000000"], 53 g[fill="#000"],
54 rect[fill="#000000"], 54 rect[fill="#000"],
55 circle[fill="#000000"], 55 circle[fill="#000"],
56 polygon[fill="#000000"] { 56 polygon[fill="#000"] {
57 fill: $color; 57 fill: $color;
58 } 58 }
59 59
60 path[stroke="#000000"], 60 path[stroke="#000"],
61 g[stroke="#000000"], 61 g[stroke="#000"],
62 rect[stroke="#000000"], 62 rect[stroke="#000"],
63 circle[stroke="#000000"], 63 circle[stroke="#000"],
64 polygon[stroke="#000000"] { 64 polygon[stroke="#000"] {
65 stroke: $color; 65 stroke: $color;
66 } 66 }
67 67
68 stop[stop-color="#000000"] { 68 stop[stop-color="#000"] {
69 stop-color: $color; 69 stop-color: $color;
70 } 70 }
71 } 71 }