fixing horizontal sizing issue in navbar
This commit is contained in:
@ -41,8 +41,8 @@ export default function Navbar({ activePage = "" }: NavbarProps) {
|
||||
</div>
|
||||
|
||||
<div className={cn("flex flex-row justify-between pb-8")}>
|
||||
<div className="w-full grid grid-flow-col auto-cols-[76px] gap-8">
|
||||
{Array.from({ length: 20 }).map((_, index) => (
|
||||
<div className="w-full grid grid-flow-col">
|
||||
{Array.from({ length: 12 }).map((_, index) => (
|
||||
<div key={index} className="flex justify-center">
|
||||
<img
|
||||
src={index % 2 === 0 ? "/assets/computer.png" : "/assets/people.png"}
|
||||
|
||||
Reference in New Issue
Block a user