Skip to content

Commit

Permalink
feat: vertical footer because im lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfromyeg committed Jan 10, 2024
1 parent 2cfe0f4 commit 90b90c9
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions client/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Footer: React.FC<Props> = (props: Props) => {
.
</p>
</div>
<div className="flex flex-row justify-center items-center space-x-1 text-white">
<div className="max-w-sm flex flex-col justify-center items-center space-x-1 text-white">
<a
className="text-link hover:text-link-dark focus:outline-none focus:ring-2 focus:ring-link focus:ring-opacity-50"
href="https://michaeldemar.co"
Expand All @@ -32,7 +32,6 @@ const Footer: React.FC<Props> = (props: Props) => {
>
by Michael DeMarco
</a>
<span></span>
<a
className="text-link hover:text-link-dark focus:outline-none focus:ring-2 focus:ring-link focus:ring-opacity-50"
href="https://buymeacoffee.com/michaelfromyeg"
Expand All @@ -41,7 +40,6 @@ const Footer: React.FC<Props> = (props: Props) => {
>
buy me a coffee
</a>
<span></span>
<a
className="text-link hover:text-link-dark focus:outline-none focus:ring-2 focus:ring-link focus:ring-opacity-50"
href="https://github.com/michaelfromyeg/bereal-wrapped"
Expand All @@ -50,12 +48,7 @@ const Footer: React.FC<Props> = (props: Props) => {
>
GitHub
</a>
{version && (
<>
<span></span>
<div className="mb-0">version {version}</div>
</>
)}
{version && <div className="mb-0">version {version}</div>}
</div>
</footer>
);
Expand Down

0 comments on commit 90b90c9

Please sign in to comment.