@hanzo/ui 3.8.33 → 3.8.34
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.
|
@@ -86,10 +86,10 @@ const getPositionClx = (
|
|
|
86
86
|
|
|
87
87
|
if (agent === 'phone') {
|
|
88
88
|
if (mobileHeadingLeft) {
|
|
89
|
-
headerclx = 'self-start text-left'
|
|
89
|
+
headerclx = 'self-start !text-left'
|
|
90
90
|
} else {
|
|
91
91
|
headerclx = (mobileHeadingCentered || headingCentered) ?
|
|
92
|
-
'self-center text-center' : (headingRight ? 'self-end text-right' : 'self-start text-left')
|
|
92
|
+
'self-center !text-center' : (headingRight ? 'self-end !text-right' : 'self-start !text-left')
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
if (mobileBylineLeft) {
|
|
@@ -98,10 +98,10 @@ const getPositionClx = (
|
|
|
98
98
|
}
|
|
99
99
|
else {
|
|
100
100
|
const largerclx = (headingCentered) ?
|
|
101
|
-
'self-center text-center' : (headingRight ? 'self-end text-right' : 'self-start text-left')
|
|
101
|
+
'self-center !text-center' : (headingRight ? 'self-end !text-right' : 'self-start !text-left')
|
|
102
102
|
|
|
103
103
|
if (mobileHeadingCentered) {
|
|
104
|
-
headerclx = 'self-center text-center md:' + largerclx.split(' ').join(' md:')
|
|
104
|
+
headerclx = 'self-center !text-center md:' + largerclx.split(' ').join(' md:')
|
|
105
105
|
}
|
|
106
106
|
else {
|
|
107
107
|
headerclx = largerclx
|
package/package.json
CHANGED