@magicgol/polyjuice 0.28.1 → 0.28.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -83,7 +83,13 @@ export default {
|
|
83
83
|
background-color: map-get($palette, 'goalkeeper');
|
84
84
|
|
85
85
|
&.mg-footballer-box--opacity {
|
86
|
-
|
86
|
+
&-low {
|
87
|
+
background-color: rgba(map-get($palette, 'goalkeeper'), 0.1);
|
88
|
+
}
|
89
|
+
|
90
|
+
&-high {
|
91
|
+
background-color: rgba(map-get($palette, 'goalkeeper'), 0.8);
|
92
|
+
}
|
87
93
|
}
|
88
94
|
}
|
89
95
|
}
|
@@ -95,7 +101,13 @@ export default {
|
|
95
101
|
background-color: map-get($palette, 'defender');
|
96
102
|
|
97
103
|
&.mg-footballer-box--opacity {
|
98
|
-
|
104
|
+
&-low {
|
105
|
+
background-color: rgba(map-get($palette, 'defender'), 0.1);
|
106
|
+
}
|
107
|
+
|
108
|
+
&-high {
|
109
|
+
background-color: rgba(map-get($palette, 'defender'), 0.8);
|
110
|
+
}
|
99
111
|
}
|
100
112
|
}
|
101
113
|
}
|
@@ -107,7 +119,13 @@ export default {
|
|
107
119
|
background-color: map-get($palette, 'midfielder');
|
108
120
|
|
109
121
|
&.mg-footballer-box--opacity {
|
110
|
-
|
122
|
+
&-low {
|
123
|
+
background-color: rgba(map-get($palette, 'midfielder'), 0.1);
|
124
|
+
}
|
125
|
+
|
126
|
+
&-high {
|
127
|
+
background-color: rgba(map-get($palette, 'midfielder'), 0.8);
|
128
|
+
}
|
111
129
|
}
|
112
130
|
}
|
113
131
|
}
|
@@ -119,7 +137,13 @@ export default {
|
|
119
137
|
background-color: map-get($palette, 'forward');
|
120
138
|
|
121
139
|
&.mg-footballer-box--opacity {
|
122
|
-
|
140
|
+
&-low {
|
141
|
+
background-color: rgba(map-get($palette, 'forward'), 0.1);
|
142
|
+
}
|
143
|
+
|
144
|
+
&-high {
|
145
|
+
background-color: rgba(map-get($palette, 'forward'), 0.8);
|
146
|
+
}
|
123
147
|
}
|
124
148
|
}
|
125
149
|
}
|