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 CHANGED
@@ -98,7 +98,10 @@ const useSectionStyles$a = createUseStyles(theme => ({
98
98
  pointerEvents: 'auto',
99
99
  cursor: 'default',
100
100
  position: 'relative',
101
- height: '55px'
101
+ height: '55px',
102
+ width: ({
103
+ isCustomWebsite
104
+ } = {}) => isCustomWebsite ? '100%' : ''
102
105
  },
103
106
  optionsContainer: {
104
107
  display: 'flex',
@@ -141,7 +144,10 @@ const useSectionStyles$a = createUseStyles(theme => ({
141
144
  display: 'flex',
142
145
  position: 'relative',
143
146
  maxHeight: '55px',
144
- alignItems: 'center'
147
+ alignItems: 'center',
148
+ width: ({
149
+ isCustomWebsite
150
+ } = {}) => isCustomWebsite ? '30%' : ''
145
151
  },
146
152
  imageDivImageMobile: {},
147
153
  imageDivImageNext: {
@@ -155,7 +161,9 @@ const useSectionStyles$a = createUseStyles(theme => ({
155
161
  imageAnchorMobile: {
156
162
  pointerEvents: 'auto',
157
163
  cursor: 'default',
158
- // width: '100%',
164
+ width: ({
165
+ isCustomWebsite
166
+ } = {}) => isCustomWebsite ? '100%' : '',
159
167
  maxWidth: '85px',
160
168
  cursor: 'default',
161
169
  height: '46px',
@@ -1131,7 +1139,7 @@ function OptionList({
1131
1139
  data: {
1132
1140
  link: headerData?.loginCtaLink,
1133
1141
  isLink: 1,
1134
- value: 'Login',
1142
+ value: countryCode === "KR" ? "로그인" : 'Login',
1135
1143
  isExternal: 1
1136
1144
  },
1137
1145
  type: 'primary',
@@ -4431,7 +4439,7 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
4431
4439
  lineHeight: 'normal'
4432
4440
  },
4433
4441
  videoTestimonialTitle: {
4434
- lineHeight: '36px',
4442
+ lineHeight: 'normal',
4435
4443
  letterSpacing: '-1px'
4436
4444
  }
4437
4445
  }