File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -11,26 +11,27 @@ const Header = () => {
1111 } ;
1212
1313 return (
14- < header className = "bg-sky-500 py-3 px-4 flex items-center justify-between relative" >
15- < span className = "text-white font-bold text-xl" > Logo </ span >
14+ < header className = "bg-sky-700 py-2 px-4 flex items-center justify-between relative " >
15+ < span className = "text-sky-300 font-bold text-xl" > Dev </ span >
1616
1717 < button
1818 onClick = { toggleNavbar }
1919 className = "block sm:hidden bg-white rounded-full px-2 py-2 text-red-500"
2020 >
21- { showMenu ? < FiXSquare size = { 25 } /> : < FiList size = { 25 } /> }
21+ { showMenu ? < FiXSquare size = { 25 } /> : < FiList color = { 'blue' } size = { 25 } /> }
2222 </ button >
2323
2424 < nav
2525 className = { `${
2626 showMenu ? "block" : "hidden"
27- } absolute top-full left-0 w-full bg-red-400 px-5 py-4 sm:static sm:block sm:bg-transparent`}
27+ } absolute top-full left-0 w-full bg-sky-600 px-4 py-4 sm:static sm:block sm:bg-transparent`}
2828 >
2929 < ul className = "flex flex-col gap-3 sm:flex-row sm:gap-6" >
3030 { NavNavigate . map ( ( link , index ) => (
3131 < li key = { index } >
32- < Link to = { link . to } className = "text-white hover:underline" >
32+ < Link to = { link . to } className = "text-sky-300 font-bold hover:underline" >
3333 { link . text }
34+ < hr className = "sm:hidden border w-1/4 my-1 border-gray-00 " />
3435 </ Link >
3536 </ li >
3637 ) ) }
You can’t perform that action at this time.
0 commit comments