Skip to content

Commit

Permalink
fix: round t3 logo on website and docs (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coyenn committed Sep 16, 2022
1 parent 5f748b2 commit 82256ca
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
8 changes: 7 additions & 1 deletion www/src/components/footer/footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ const isLanding = path === "/";
class="flex justify-center space-x-3 md:justify-start"
>
<div class="flex items-center justify-center">
<img src="/favicon.svg" width="60" height="60" alt="T3 Logo" />
<img
class="rounded-lg"
src="/favicon.svg"
width="60"
height="60"
alt="T3 Logo"
/>
<span class="text-2xl font-semibold pl-3">Create T3 App</span>
</div>
</a>
Expand Down
10 changes: 8 additions & 2 deletions www/src/components/navigation/navbar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,14 @@ const navbarLinks: Array<{ href: string; label: string }> = [
<div class="flex items-center justify-between w-full px-6 pb-2">
<div class="flex justify-between items-center w-full md:w-auto">
<div>
<a class="" href="/">
<img src="/favicon.svg" width="45" height="45" alt="T3 Logo" />
<a href="/">
<img
src="/favicon.svg"
width="45"
height="45"
alt="T3 Logo"
class="rounded-lg"
/>
</a>
</div><div class="hidden -space-x-1 md:flex md:ml-10">
{
Expand Down

0 comments on commit 82256ca

Please sign in to comment.