Skip to content

Commit

Permalink
button hover colour is fixed in master
Browse files Browse the repository at this point in the history
  • Loading branch information
incognitojam committed Jun 12, 2024
1 parent 495932c commit f55c76f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/auth/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function Login() {

<div class="flex flex-col items-stretch gap-4 self-stretch">
<Button
class="h-16 gap-4 hover:bg-gray-200"
class="h-16 gap-4"
href={getGoogleAuthUrl()}
leading={
<img
Expand All @@ -51,7 +51,7 @@ export default function Login() {
Sign in with Google
</Button>
<Button
class="h-16 gap-5 pr-7 hover:bg-gray-200"
class="h-16 gap-5 pr-7"
href={getAppleAuthUrl()}
leading={
<div class="relative size-8">
Expand All @@ -68,7 +68,7 @@ export default function Login() {
Sign in with Apple
</Button>
<Button
class="h-16 gap-4 hover:bg-gray-200"
class="h-16 gap-4"
href={getGitHubAuthUrl()}
leading={
<img
Expand Down Expand Up @@ -98,7 +98,7 @@ export default function Login() {
</div>

<Button
class="gap-4 hover:bg-gray-200"
class="gap-4"
onclick={loginAsDemoUser}
trailing={
<span class="material-symbols-outlined icon-outline">
Expand Down

0 comments on commit f55c76f

Please sign in to comment.