Skip to content

Commit

Permalink
Bigger shadows and wider tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronshekey committed Nov 29, 2023
1 parent 13c4ba1 commit 6a44837
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export function Layout({ children, className, style }: Props) {
)}
<div className="flex gap-4 sm:mb-4 lg:mb-9">
<Navigation className="hidden w-44 pt-9 md:block" />
<article className="flex-1 bg-card p-4 shadow-lg sm:rounded-lg md:p-9 w-0">{children}</article>
<article className="flex-1 bg-card p-4 shadow-2xl sm:rounded-lg md:p-9 w-0">{children}</article>
</div>
</main>
);
Expand All @@ -93,7 +93,7 @@ function Navigation({ className, style }: WithStyleProps) {
return (
<nav className={cx("text-sm", className)} style={style}>
<ul role="list" className="flex flex-col">
<li className="mb-2 text-xs font-medium uppercase tracking-wide">Welcome</li>
<li className="mb-2 text-xs font-medium uppercase tracking-wider">Welcome</li>

<li>
<NavLink
Expand All @@ -109,7 +109,7 @@ function Navigation({ className, style }: WithStyleProps) {
</NavLink>
</li>

<li className="mt-6 text-xs font-medium uppercase tracking-wide">Base</li>
<li className="mt-6 text-xs font-medium uppercase tracking-wider">Base</li>

<ul role="list" className="mt-2">
<li>
Expand Down Expand Up @@ -140,7 +140,7 @@ function Navigation({ className, style }: WithStyleProps) {
</li>
</ul>

<li className="mt-6 text-xs font-medium uppercase tracking-wide">Components</li>
<li className="mt-6 text-xs font-medium uppercase tracking-wider">Components</li>
<ul role="list" className="mt-2">
<li>
<NavLink
Expand Down

0 comments on commit 6a44837

Please sign in to comment.