diff --git a/src/components/modules/delivery-policy/DeliveryAndPolicyContent/DeliveryAndPolicyContent.module.scss b/src/components/modules/delivery-policy/DeliveryAndPolicyContent/DeliveryAndPolicyContent.module.scss index 8b7e42bf6..3ea5108e5 100644 --- a/src/components/modules/delivery-policy/DeliveryAndPolicyContent/DeliveryAndPolicyContent.module.scss +++ b/src/components/modules/delivery-policy/DeliveryAndPolicyContent/DeliveryAndPolicyContent.module.scss @@ -1,8 +1,10 @@ +.wrapper{ + @apply flex justify-center; +} + .deliveryAndPolicyContentWrapper{ max-width: 80.4rem; min-height: 4rem; - margin-left: 31.8rem; - margin-right: 31.8rem; } .titleWrapper{ diff --git a/src/components/modules/delivery-policy/DeliveryAndPolicyContent/DeliveryAndPolicyContent.tsx b/src/components/modules/delivery-policy/DeliveryAndPolicyContent/DeliveryAndPolicyContent.tsx index a5c411b42..0709257fc 100644 --- a/src/components/modules/delivery-policy/DeliveryAndPolicyContent/DeliveryAndPolicyContent.tsx +++ b/src/components/modules/delivery-policy/DeliveryAndPolicyContent/DeliveryAndPolicyContent.tsx @@ -16,25 +16,27 @@ const CONTENT = [ const DeliveryAndPolicyContent = ( { title, date, content } : DeliveryAndPolicyContentProps) => { return ( -
+
-
-
-
LASTEST UPDATED: 
- +
+
+
+
LASTEST UPDATED: 
+ +
+ {title}
- {title} +
+ { + content.map(item => ) + } +
+ + + + +
-
- { - content.map(item => ) - } -
- - - - -
)