@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 +1 -1
- package/src/components/footballer/horizontal-footballer/HFootballer.vue +1 -1
- package/src/components/footballer/role-badge/RoleBadge.vue +2 -1
- package/src/components/label/label/Label.vue +3 -1
- package/src/components/list/head/ListHead.vue +1 -1
- package/src/components/typography/h1/HeadingOne.vue +3 -1
- package/src/components/typography/h2/HeadingTwo.vue +3 -1
- package/src/components/typography/h3/HeadingThree.vue +3 -1
- package/src/components/typography/h4/HeadingFour.vue +3 -1
- package/src/components/typography/h5/HeadingFive.vue +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
-
class="d-inline-flex text-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:
|
|
73
|
+
color: map-get($palette, 'text');
|
|
72
74
|
}
|
|
73
75
|
|
|
74
76
|
&-dark {
|