Commit edca9fce by sujata

changes update

1 parent 3bff5ee0
......@@ -6,7 +6,7 @@ import SwiperNav from "./SwiperNav";
const Clientele = ({
partners = [],
spaceBetween = 5,
spaceBetween = 10,
autoplayDelay = 3000,
slidesPerViewBreakpoints = {
0: { slidesPerView: 2 },
......
......@@ -149,6 +149,7 @@ const Industries = () => {
<SwiperNav />
</div>
</div>
</>
);
};
......
......@@ -8,8 +8,8 @@ const IndustrySidebar = ({ title, services, selectedIndex, setSelectedIndex }) =
<h3 className="widget-title">{title}</h3>
<TabList>
{services.map((service, index) => (
<Tab key={index} onClick={() => setSelectedIndex(index)}>
{service.name}
<Tab key={index} onClick={() => setSelectedIndex(index)} selected={selectedIndex === index}>
<span> {service.name}</span>
<i className="ri-arrow-right-s-line"></i>
</Tab>
))}
......
......@@ -42,7 +42,7 @@ const Footer = () => {
<Link href="/client-servicing">Client Servicing</Link>
</li>
<li>
<Link href="#">Career</Link>
<Link href="/career">Career</Link>
</li>
<li>
<Link href="/contact">Contact Us</Link>
......
......@@ -386,6 +386,7 @@
.services-slides .single-services-box .content {
padding: 20px;
height: auto;
}
.single-services-item {
......
......@@ -75,7 +75,7 @@ Default CSS
--whiteColor: #ffffff;
--blackColor: #262E2E;
--lightgrayColor: #e6e6e68a;
--fontSize: 16px;
--fontSize: 17px;
--transition: .5s;
}
......@@ -7214,7 +7214,10 @@ Widget Area CSS
.widget-area .widget_service_categories ul li:last-child {
margin-bottom: 0;
}
.react-tabs__tab--selected{
color: var(--mainColor)!important;
border: none!important;
}
/*================================================
404 Error Area CSS
=================================================*/
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!