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