Skip to content

Commit

Permalink
Made it more responsive on smaller devices like
Browse files Browse the repository at this point in the history
phones and tablets
  • Loading branch information
Vagz-Ware committed Feb 8, 2025
1 parent 267d060 commit 60cc63e
Showing 1 changed file with 25 additions and 14 deletions.
39 changes: 25 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -364,20 +364,29 @@
color: var(--accent-color);
}

.footer-links {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.footer-section {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-links {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}

.footer-links a {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
text-decoration: none;
color: #ffffff;
}

.footer-links a {
color: white;
text-decoration: none;
transition: color var(--transition-speed);
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.footer-links a:hover {
color: var(--accent-color);
Expand All @@ -387,6 +396,7 @@
display: flex;
gap: 1rem;
margin-top: 1rem;
justify-content: center;
}

.social-links a {
Expand Down Expand Up @@ -821,8 +831,9 @@ <h3 class="ibm-plex-sans-regular">About Us</h3>
</div>
</div>
<div class="footer-section">
<h3 class="ibm-plex-sans-regular">Quick Links</h3>

<div class="footer-links">
<h3 class="ibm-plex-sans-regular">Quick Links</h3>
<a href="https://www.skunkworks.africa/about.html"><i class="fas fa-info-circle"></i>About</a>
<a href="https://www.skunkworks.africa/contact.html"><i class="fas fa-envelope"></i>Contact</a>
<a href="https://www.skunkworks.africa/careers.html"><i class="fas fa-briefcase"></i>Careers</a>
Expand Down

0 comments on commit 60cc63e

Please sign in to comment.