Merge pull request #274 from Zor0000/rounded-button-style

Updated button style to rounded edges
This commit is contained in:
James Read 2024-10-04 22:29:55 +01:00 committed by GitHub
commit 0a5820b146
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ export function Login() {
</div>
<div className="text-center mt-6">
<div className="w-full flex">
<Button type="submit" className="flex-1" loading={loading}>
<Button type="submit" className="flex-1 rounded-[4px]" loading={loading}>
Sign in
</Button>
</div>

View File

@ -198,7 +198,7 @@ export function RegisterAfter({
</div>
<div className="text-center mt-6">
<div className="w-full flex">
<Button type="submit" className="flex-1" loading={loading}>
<Button type="submit" className="flex-1 rounded-[4px]" loading={loading}>
Create Account
</Button>
</div>