Skip to content

Commit

Permalink
Preparation for 2024 run
Browse files Browse the repository at this point in the history
  • Loading branch information
3bobchen committed Jul 20, 2024
1 parent 997909e commit 61c2d56
Show file tree
Hide file tree
Showing 8 changed files with 10,041 additions and 2,304 deletions.
4 changes: 2 additions & 2 deletions components/BasedPill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface Props {
const BasedPill = ({ date, children }: PropsWithChildren<Props>) => {
return (
<div
className={`sm:text-md group relative z-0 px-4 py-2 font-mono md:px-4 md:py-2.5 md:text-3xl lg:text-6xl`}
className={`sm:text-md group relative z-0 px-4 py-2 font-mono sm:px-24`}
>
<Glow>
<div className="absolute inset-x-0 animate-pulse-and-spin rounded-full bg-gradient-to-br from-blue-400 to-pink-400 pb-[100%]" />
Expand All @@ -34,7 +34,7 @@ const BasedPill = ({ date, children }: PropsWithChildren<Props>) => {

<div className="invisible">99d 99h 99m 99s</div>
<div
className="absolute inset-0 grid place-items-center"
className="absolute inset-0 grid place-items-center text-lg lg:text-3xl"
style={{ opacity: date ? 1 : 0 }}
>
{children}
Expand Down
Loading

0 comments on commit 61c2d56

Please sign in to comment.