[MobileSendPopUp] ru font-size 수정,dangerouslySetInnerHTML 추가
This commit is contained in:
@@ -579,7 +579,7 @@ export default function MobileSendPopUp({
|
|||||||
onClick={handleInputClick}
|
onClick={handleInputClick}
|
||||||
spotlightDisabled={spotlightDisabled}
|
spotlightDisabled={spotlightDisabled}
|
||||||
>
|
>
|
||||||
{deviceCountryCode === "RU" && (
|
{deviceCountryCode && deviceCountryCode === "RU" && (
|
||||||
<span className={css.rucInput}>{"+7 "}</span>
|
<span className={css.rucInput}>{"+7 "}</span>
|
||||||
)}
|
)}
|
||||||
<span>{mobileNumber}</span>
|
<span>{mobileNumber}</span>
|
||||||
@@ -600,11 +600,16 @@ export default function MobileSendPopUp({
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className={css.instruction}>
|
<div className={css.instruction}>
|
||||||
<span>
|
{deviceCountryCode && (
|
||||||
{$L(
|
<span
|
||||||
"By clicking Agree and Send button, I agree that LGE may collect and store my cell phone number to send text messages as I requested, for data analysis and for feature-enhancement purposes. By entering my cell phone number, I agree to receive messages from LGE with information on how to purchase the product I selected. Message and data rates may apply."
|
dangerouslySetInnerHTML={{
|
||||||
)}
|
__html: `${$L(
|
||||||
</span>
|
"By clicking Agree and Send button, I agree that LGE may collect and store my cell phone number to send text messages as I requested, for data analysis and for feature-enhancement purposes. By entering my cell phone number, I agree to receive messages from LGE with information on how to purchase the product I selected. Message and data rates may apply."
|
||||||
|
)}`,
|
||||||
|
}}
|
||||||
|
className={deviceCountryCode === "RU" && css.instructionRu}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Container className={css.btnContainer}>
|
<Container className={css.btnContainer}>
|
||||||
|
|||||||
@@ -113,6 +113,12 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
||||||
|
> span {
|
||||||
|
&.instructionRu {
|
||||||
|
font-size: 21px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.btnContainer {
|
.btnContainer {
|
||||||
|
|||||||
Reference in New Issue
Block a user