Commit 8904c816 by gaurav

miner change

1 parent 802601f8
...@@ -11,6 +11,7 @@ import { cleanImage } from "@/layout/imageHandling"; ...@@ -11,6 +11,7 @@ import { cleanImage } from "@/layout/imageHandling";
const MethodTwoSection = ({ const MethodTwoSection = ({
heading, heading,
data, data,
classname,
viewportAmount = 0.4, viewportAmount = 0.4,
sliderConfig = {}, sliderConfig = {},
}) => { }) => {
...@@ -31,7 +32,7 @@ const MethodTwoSection = ({ ...@@ -31,7 +32,7 @@ const MethodTwoSection = ({
return ( return (
<> <>
<section className="method-two "> <section className={`method-two ${classname}`}>
<Container className="justify-content-center align-self-center"> <Container className="justify-content-center align-self-center">
<div className="section-title"> <div className="section-title">
<span className="sub-title">{heading.Subtitle}</span> <span className="sub-title">{heading.Subtitle}</span>
......
...@@ -79,6 +79,7 @@ const RaPage = ({ rapage, conversionData }) => { ...@@ -79,6 +79,7 @@ const RaPage = ({ rapage, conversionData }) => {
<MethodTwoSection <MethodTwoSection
heading={section?.Heading} heading={section?.Heading}
data={section?.ElementList} data={section?.ElementList}
classname='risk_advisory_method'
/> />
); );
case "dynamic-zone.card": case "dynamic-zone.card":
......
...@@ -9052,6 +9052,10 @@ ul.pagination.custom-pagination { ...@@ -9052,6 +9052,10 @@ ul.pagination.custom-pagination {
color: #fff; color: #fff;
} }
.risk_advisory_method {
padding: 50px 0;
}
/* --------------------variant end---------------- */ /* --------------------variant end---------------- */
/* -------------- transaction advisory ----------- */ /* -------------- transaction advisory ----------- */
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!