Skip to content

Commit

Permalink
fixed borders and widths on smaller devices
Browse files Browse the repository at this point in the history
  • Loading branch information
sanidhyy authored Jan 13, 2024
1 parent f5f4ed0 commit 907cabe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import { socials } from "../constants";
const Footer = () => {
return (
<nav
className={`${styles.paddingX} w-full flex items-center py-8 bg-primary border-t border-t-white/5`}
className={`${styles.paddingX} w-full flex items-center py-8 bg-primary border-t border-t-secondary/5`}
>
<div className="w-full flex justify-between items-center max-w-7xl mx-auto">
<p className="text-white text-md font-bold flex">
&copy; Shubham {new Date().getFullYear()}. All rights reserved.
</p>

{/* Nav Links (Desktop) */}
<ul className="list-none hidden sm:flex flex-row gap-10">
<ul className="list-none hidden flex-row sm:flex gap-10">
{socials.map((social) => (
<li
key={social.name}
Expand Down

0 comments on commit 907cabe

Please sign in to comment.