This commit is contained in:
parent
b993e416d4
commit
bfa8a47630
|
|
@ -22,7 +22,7 @@ export default function HonorGrids({ data }: { data: Data }) {
|
||||||
style={{ backgroundImage: "url(/images/icons/honor-left.png)" }}
|
style={{ backgroundImage: "url(/images/icons/honor-left.png)" }}
|
||||||
></div>
|
></div>
|
||||||
<div className={styles.honorGridsItemLargeTitle}>{item.largeTitle}</div>
|
<div className={styles.honorGridsItemLargeTitle}>{item.largeTitle}</div>
|
||||||
<div className={`${styles.honorGridsItemTitle} ${styles.honorGridsItemLargeTitle ? styles.honorGridsItemLargeTitleContent : ""}`}>{item.title}</div>
|
<div className={`${styles.honorGridsItemTitle} ${item.largeTitle ? styles.honorGridsItemLargeTitleContent : ""}`}>{item.title}</div>
|
||||||
<div className={styles.honorGridsItemBgright}
|
<div className={styles.honorGridsItemBgright}
|
||||||
style={{ backgroundImage: "url(/images/icons/honor-right.png)" }}
|
style={{ backgroundImage: "url(/images/icons/honor-right.png)" }}
|
||||||
></div>
|
></div>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
.paragraphSection {
|
.paragraphSection {
|
||||||
padding: 6.25rem 14vw;
|
padding: 6.25rem 14vw;
|
||||||
padding: 6.25rem 0;
|
padding: 6.25rem 0;
|
||||||
background: rgba(255, 255, 255, 0.8);
|
/* background: rgba(255, 255, 255, 0.8); */
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
|
|
||||||
|
|
@ -124,10 +124,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.founderIntroduction p {
|
.founderIntroduction p {
|
||||||
|
width: 50%;
|
||||||
font-size: 1.125rem;
|
font-size: 1.125rem;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
color: #222;
|
color: #222;
|
||||||
margin: 0 0 1.5rem;
|
margin: 0 auto 1.5rem;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -128,8 +128,7 @@ export default function Sustainability() {
|
||||||
{section3Data && (
|
{section3Data && (
|
||||||
<Section
|
<Section
|
||||||
title={section3Data.title}
|
title={section3Data.title}
|
||||||
background=""
|
background={section3Data.backgroundImage ?? ""}
|
||||||
maskBackground="rgba(255,255,255,0.3)"
|
|
||||||
>
|
>
|
||||||
<div className="w-72-inner">
|
<div className="w-72-inner">
|
||||||
<p className={styles.socialResponsibilityCaseDataContent}>
|
<p className={styles.socialResponsibilityCaseDataContent}>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue