Align signup/login items

Adjusted AccountMenu layout to align the Sign Up button with the Log In option:
- Updated container padding from px-1 py-1 to px-2 py-1.5
- Updated Sign Up button styling to match width and typography (px-2 py-1.5, text-sm, rounded-sm) and hover/focus hover bg
- Ensured consistent vertical alignment with Log In item

X-Lovable-Edit-ID: edt-c46c1dfd-a4d9-40af-9a0f-b0fba9d488f1
This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 22:54:40 +00:00
+2 -2
View File
@@ -59,10 +59,10 @@ const AccountMenu = () => {
</>
) : (
<>
<div className="px-1 py-1">
<div className="px-2 py-1.5">
<button
onClick={() => handleOpenAuth("signup")}
className="w-full px-3 py-2 text-left rounded-md hover:bg-[rgba(220,38,38,0.3)] focus:bg-[rgba(220,38,38,0.3)] transition-colors"
className="w-full px-2 py-1.5 text-left text-sm rounded-sm hover:bg-[rgba(220,38,38,0.3)] focus:bg-[rgba(220,38,38,0.3)] transition-colors"
>
Skapa konto
</button>