midday-ai / v1

An open-source starter kit based on Midday.
https://v1.run
MIT License
3.18k stars 285 forks source link

Fix header UI button alignment #41

Closed ChrisAbdo closed 2 months ago

ChrisAbdo commented 2 months ago

Super basic issue but the buttons in the header are not aligned. Simple fix is adding "items-center" utility to <ul className="flex gap-4"> in header.tsx

pre: <ul className="flex gap-4">

image

post: <ul className="flex items-center gap-4">

image
pontusab commented 2 months ago

Fixed, thank you!