-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ui): Fixes misaligned footer after tailwind update
- Loading branch information
Showing
3 changed files
with
31 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import Socials from "./Socials.tsx"; | ||
|
||
const Footer = () => { | ||
return ( | ||
<footer> | ||
<div | ||
class={`max-w-screen-md mx-auto p-4 flex flex-row flex-shrink flex-wrap gap-1 items-center justify-between rounded text-xl`} | ||
/* NOTE: `backdrop-blur` is currently broken in twind */ | ||
style="backdrop-filter: blur(8px);" | ||
> | ||
<span class="flex flex-grow items-center gap-1 text-left w-[33%] whitespace-nowrap"> | ||
<span class="rotate-180 translate-y-[1.5px]">©</span> | ||
<a href="https://github.com/tif-calin/work.culi.page_2fresh"> | ||
steal this | ||
</a> | ||
</span> | ||
<Socials /> | ||
<span class="text-right w-[33%] whitespace-nowrap flex-grow"> | ||
<span> | ||
(re-)built with <a href="https://fresh.deno.dev/">fresh 🍋</a> | ||
</span> | ||
</span> | ||
</div> | ||
</footer> | ||
); | ||
}; | ||
|
||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters