Skip to content

Commit

Permalink
chore(mellow-react): prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
DominusKelvin committed Sep 19, 2024
1 parent e93399e commit 31746e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export default function GoogleButton() {
return (
<a
href="/auth/google/redirect"
className="text-gray flex w-full justify-center space-x-3 rounded-md border border-gray-200 px-4 py-3 text-center text-lg"
className="flex w-full justify-center space-x-3 rounded-md border border-gray-200 px-4 py-3 text-center text-lg text-gray"
>
<svg
className="h-6 w-6"
Expand Down
8 changes: 4 additions & 4 deletions templates/mellow-react/assets/js/layouts/AppLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default function AppLayout({ children }) {
const { loggedInUser } = usePage().props

return (
<div className="from-brand-50/10 flex min-h-screen flex-col bg-gradient-to-b to-[#F9FAFB]">
<div className="flex min-h-screen flex-col bg-gradient-to-b from-brand-50/10 to-[#F9FAFB]">
<header>
<nav className="flex items-center justify-between px-4 py-6 md:px-8">
<Link href="/">
Expand Down Expand Up @@ -34,7 +34,7 @@ export default function AppLayout({ children }) {
<li>
<Link
href="/signup"
className="bg-brand rounded-lg px-8 py-4 text-white md:py-3"
className="rounded-lg bg-brand px-8 py-4 text-white md:py-3"
>
Sign up
</Link>
Expand All @@ -47,7 +47,7 @@ export default function AppLayout({ children }) {
</Link>
<Link href="/profile">
{!loggedInUser.googleAvatarUrl ? (
<p className="bg-green rounded-full p-2 text-white">
<p className="rounded-full bg-green p-2 text-white">
{loggedInUser.initials}
</p>
) : (
Expand Down Expand Up @@ -87,7 +87,7 @@ export default function AppLayout({ children }) {
/>
</svg>

<p className="text-gray text-sm">
<p className="text-sm text-gray">
Made with love 💚 by
<a href="https://twitter.com/Dominus_Kelvin" className="underline">
Kelvin Omereshone
Expand Down

0 comments on commit 31746e6

Please sign in to comment.