Commit ·
7aad68c
1
Parent(s): f103b85
alignment fix
Browse files
frontend/components/ui/Button.tsx
CHANGED
|
@@ -50,7 +50,7 @@ export const Button: React.FC<ButtonProps> = ({
|
|
| 50 |
Loading...
|
| 51 |
</>
|
| 52 |
) : (
|
| 53 |
-
<span className="relative z-10">{children}</span>
|
| 54 |
)}
|
| 55 |
</button>
|
| 56 |
);
|
|
|
|
| 50 |
Loading...
|
| 51 |
</>
|
| 52 |
) : (
|
| 53 |
+
<span className="relative z-10 flex items-center">{children}</span>
|
| 54 |
)}
|
| 55 |
</button>
|
| 56 |
);
|