Skip to content

Commit

Permalink
Merge pull request #139 from gdsc-nits-org/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
gdsc-nits authored Oct 18, 2024
2 parents 63d37fa + 64cc32b commit f8e28ec
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/components/Faq/Faq.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Faqs = () => {
if (selected == i) {
return setSelected(null);
}
setSelected(i + 1);
setSelected(i);
};

useEffect(() => {
Expand All @@ -32,7 +32,7 @@ const Faqs = () => {
<span>
<SlArrowDown
size={23}
className={`faq-arrow ${selected === i ? "active" : "active"}`}
className={`faq-arrow ${selected === i ? "active" : ""}`}
/>
</span>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function Footer() {
</div>
<div className="footer-mail">
<ul>or e-mail us at </ul>
<a href="">gdsc@nits.ac.in</a>
<a href="mailto:gdsc@nits.ac.in">gdsc@nits.ac.in</a>
</div>
</div>
<div className="footer-top-right">
Expand Down Expand Up @@ -128,10 +128,10 @@ function Footer() {
<Link to="/projects/1" className="footer-project">
Attendo
</Link>
<Link to="/projects/6" className="footer-project">
<Link to="/projects/0" className="footer-project">
Sellr
</Link>
<Link to="/projects/0" className="footer-project">
<Link to="/projects/6" className="footer-project">
Efficacy
</Link>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Team/Team-Card/TeamCard.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@
justify-content: center;
align-items: center;
margin: auto;
gap: 0;
gap: 2.75rem;
}

.socialicon {
scale: -1.625;
scale: 1.625;
}

.socialicon:hover {
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Events/Events.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ const Events = () => {
value={pastEvents}
>
<option value="All">All</option>
<option value="2024">2023</option>
<option value="2023">2022</option>
<option value="2024">2024</option>
<option value="2023">2023</option>
</select>
</div>
</div>
Expand Down

0 comments on commit f8e28ec

Please sign in to comment.