@magicgol/polyjuice 0.23.0 → 0.23.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magicgol/polyjuice",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -92,7 +92,7 @@ export default {
92
92
  @import '../../../assets/palette';
93
93
 
94
94
  .mg-h-footballer {
95
- color: #343434;
95
+ color: map-get($palette, 'text');
96
96
  font-family: 'Ubuntu', sans-serif;
97
97
  font-size: 0.75rem;
98
98
 
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div
3
- class="d-inline-flex text-center text-white rounded-circle justify-content-center align-items-center"
3
+ class="d-inline-flex text-center rounded-circle justify-content-center align-items-center"
4
4
  :class="classes"
5
5
  >
6
6
  <slot v-if="slotVisibility"></slot>
@@ -57,6 +57,7 @@ export default {
57
57
 
58
58
  .mg-role-badge {
59
59
  background-color: #c2c2c2;
60
+ color: map-get($palette, 'text');
60
61
  font-family: 'Ubuntu', sans-serif;
61
62
  font-weight: 600;
62
63
 
@@ -45,6 +45,8 @@ export default {
45
45
  </script>
46
46
 
47
47
  <style lang="scss">
48
+ @import '../../../assets/palette';
49
+
48
50
  .mg-label {
49
51
  border-radius: 32px;
50
52
  padding-top: 0.0625rem;
@@ -68,7 +70,7 @@ export default {
68
70
  &--theme {
69
71
  &-light {
70
72
  background: #f7f7f7;
71
- color: #343434;
73
+ color: map-get($palette, 'text');
72
74
  }
73
75
 
74
76
  &-dark {
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div
3
- class="text-uppercase pb-2 px-3"
3
+ class="text-uppercase pb-2 px-2"
4
4
  :class="classes"
5
5
  ><slot></slot></div>
6
6
  </template>
@@ -17,8 +17,10 @@ export default {
17
17
  </script>
18
18
 
19
19
  <style lang="scss">
20
+ @import '../../../assets/palette';
21
+
20
22
  .mg-h1 {
21
- color: #343434;
23
+ color: map-get($palette, 'text');
22
24
  font-family: 'Ubuntu', sans-serif;
23
25
  font-size: 1.25rem;
24
26
  font-weight: 500;
@@ -17,8 +17,10 @@ export default {
17
17
  </script>
18
18
 
19
19
  <style lang="scss">
20
+ @import '../../../assets/palette';
21
+
20
22
  .mg-h2 {
21
- color: #343434;
23
+ color: map-get($palette, 'text');
22
24
  font-family: 'Ubuntu', sans-serif;
23
25
  font-size: 1.125rem;
24
26
  font-weight: 500;
@@ -17,8 +17,10 @@ export default {
17
17
  </script>
18
18
 
19
19
  <style lang="scss">
20
+ @import '../../../assets/palette';
21
+
20
22
  .mg-h3 {
21
- color: #343434;
23
+ color: map-get($palette, 'text');
22
24
  font-family: 'Ubuntu', sans-serif;
23
25
  font-size: 1rem;
24
26
  font-weight: 500;
@@ -17,8 +17,10 @@ export default {
17
17
  </script>
18
18
 
19
19
  <style lang="scss">
20
+ @import '../../../assets/palette';
21
+
20
22
  .mg-h4 {
21
- color: #343434;
23
+ color: map-get($palette, 'text');
22
24
  font-family: 'Ubuntu', sans-serif;
23
25
  font-size: 1rem;
24
26
  font-weight: 400;
@@ -31,7 +31,7 @@ export default {
31
31
  @import '../../../assets/palette';
32
32
 
33
33
  .mg-h5 {
34
- color: #343434;
34
+ color: map-get($palette, 'text');
35
35
  font-family: 'Ubuntu', sans-serif;
36
36
  font-size: 0.875rem;
37
37
  font-weight: 700;