Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dohaki committed Feb 8, 2024
1 parent 26d241d commit c22a332
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/_components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export function Footer() {
<FooterBox label="information" items={information} useExternalLinks />
</div>
</div>
<div className="text-grey-400 flex flex-row items-center justify-center gap-1 lining-nums tabular-nums">
<div className="flex flex-row items-center justify-center gap-1 lining-nums tabular-nums text-grey-400">
Powered by
<UmaIcon />
</div>
Expand All @@ -102,7 +102,7 @@ function FooterBox(props: {
}) {
return (
<div className="flex flex-col gap-5">
<div className="tracking-wide-4 text-grey-400 text-xs uppercase lining-nums tabular-nums">
<div className="text-xs uppercase lining-nums tabular-nums tracking-wide-4 text-grey-400">
{props.label}
</div>
<div className="flex flex-col gap-5">
Expand Down
4 changes: 2 additions & 2 deletions src/app/_components/header-nav/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export function HeaderNav() {
);

return (
<header className="bg-grey-dark sticky top-0">
<header className="sticky top-0 bg-grey-dark">
<nav className="mx-auto max-w-7xl p-4">
<div className="flex flex-row items-center justify-between">
<div className="flex flex-row items-center">
Expand Down Expand Up @@ -117,7 +117,7 @@ export function HeaderNav() {
</Button>
{/* Only show menu button on mobile */}
<button
className="border-grey-600 flex h-10 w-10 items-center justify-center rounded-full border sm:hidden"
className="flex h-10 w-10 items-center justify-center rounded-full border border-grey-600 sm:hidden"
onClick={() => setIsMenuOpen((isMenuOpen) => !isMenuOpen)}
>
{isMenuOpen ? <MinusIcon /> : <MenuIcon />}
Expand Down

0 comments on commit c22a332

Please sign in to comment.