Skip to content

Commit daa1993

Browse files
Merge pull request #79 from codeXsit/codex-6-Navbar
remove padding for logo
2 parents c29da0e + b4a8341 commit daa1993

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Navbar/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ function Navbar({ links }) {
1919

2020
return (
2121
<nav
22-
className={`shadow-md w-full flex xs:flex-col md:flex-row ${isOpen ? "xs:h-screen" : ""} md:h-full justify-between items-center px-6 bg-secondary-dark relative z-50`}
22+
className={`shadow-md w-full flex xs:flex-col md:flex-row ${isOpen ? "xs:h-screen" : ""} md:h-full justify-between items-center pr-6 bg-secondary-dark relative z-50`}
2323
>
2424
<div className="flex flex-row justify-between xs:w-full md:w-auto items-center">
2525
<Link
2626
to="/"
27-
className="cursor-pointer"
27+
className="cursor-pointer sm:px-0 md:px-6"
2828
onMouseEnter={setCursorVariantNone}
2929
onMouseLeave={setCursorVariantDefault}
3030
>

0 commit comments

Comments
 (0)