diy-template-components 1.0.28 → 1.0.30
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/build/index.es.js +13 -5
- package/build/index.es.js.map +1 -1
- package/build/index.js +13 -5
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -114,7 +114,10 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
114
114
|
pointerEvents: 'auto',
|
|
115
115
|
cursor: 'default',
|
|
116
116
|
position: 'relative',
|
|
117
|
-
height: '55px'
|
|
117
|
+
height: '55px',
|
|
118
|
+
width: ({
|
|
119
|
+
isCustomWebsite
|
|
120
|
+
} = {}) => isCustomWebsite ? '100%' : ''
|
|
118
121
|
},
|
|
119
122
|
optionsContainer: {
|
|
120
123
|
display: 'flex',
|
|
@@ -157,7 +160,10 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
157
160
|
display: 'flex',
|
|
158
161
|
position: 'relative',
|
|
159
162
|
maxHeight: '55px',
|
|
160
|
-
alignItems: 'center'
|
|
163
|
+
alignItems: 'center',
|
|
164
|
+
width: ({
|
|
165
|
+
isCustomWebsite
|
|
166
|
+
} = {}) => isCustomWebsite ? '30%' : ''
|
|
161
167
|
},
|
|
162
168
|
imageDivImageMobile: {},
|
|
163
169
|
imageDivImageNext: {
|
|
@@ -171,7 +177,9 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
171
177
|
imageAnchorMobile: {
|
|
172
178
|
pointerEvents: 'auto',
|
|
173
179
|
cursor: 'default',
|
|
174
|
-
|
|
180
|
+
width: ({
|
|
181
|
+
isCustomWebsite
|
|
182
|
+
} = {}) => isCustomWebsite ? '100%' : '',
|
|
175
183
|
maxWidth: '85px',
|
|
176
184
|
cursor: 'default',
|
|
177
185
|
height: '46px',
|
|
@@ -1147,7 +1155,7 @@ function OptionList({
|
|
|
1147
1155
|
data: {
|
|
1148
1156
|
link: headerData?.loginCtaLink,
|
|
1149
1157
|
isLink: 1,
|
|
1150
|
-
value: 'Login',
|
|
1158
|
+
value: countryCode === "KR" ? "로그인" : 'Login',
|
|
1151
1159
|
isExternal: 1
|
|
1152
1160
|
},
|
|
1153
1161
|
type: 'primary',
|
|
@@ -4447,7 +4455,7 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
|
|
|
4447
4455
|
lineHeight: 'normal'
|
|
4448
4456
|
},
|
|
4449
4457
|
videoTestimonialTitle: {
|
|
4450
|
-
lineHeight: '
|
|
4458
|
+
lineHeight: 'normal',
|
|
4451
4459
|
letterSpacing: '-1px'
|
|
4452
4460
|
}
|
|
4453
4461
|
}
|