Commit edca9fce by sujata

changes update

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