Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
merlinfuchs committed Feb 6, 2024
1 parent 9a476bd commit 1169365
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kite-web/src/pages/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function GuildsPage() {
{guilds.map((guild) => (
<Link
key={guild.id}
className="bg-dark-2 rounded-md px-3 py-3 flex items-center hover:scale-101"
className="bg-dark-2 rounded-md px-3 py-3 flex items-center hover:scale-101 transition-transform"
href={`/app/guilds/${guild.id}`}
>
<div className="bg-dark-1 h-14 w-14 rounded-full flex items-center justify-center flex-none mr-4">
Expand All @@ -51,10 +51,10 @@ export default function GuildsPage() {
</Link>
))}
<a
className="rounded-md px-3 py-3 border-2 border-dashed border-dark-7 hover:bg-dark-4 flex items-center"
className="rounded-md px-3 py-3 border-2 border-dashed border-dark-7 hover:bg-dark-4 flex items-center group transition-colors"
href={getApiUrl("/v1/auth/invite")}
>
<PlusCircleIcon className="h-14 w-14 text-gray-300 mr-3" />
<PlusCircleIcon className="h-14 w-14 text-gray-400 group-hover:text-gray-300 mr-3" />
<div className="text-lg font-medium text-gray-100">
Add to server
</div>
Expand Down

0 comments on commit 1169365

Please sign in to comment.