Skip to content

Commit

Permalink
make input larger
Browse files Browse the repository at this point in the history
  • Loading branch information
gregrickaby committed Feb 9, 2024
1 parent 5231f17 commit 6fe5482
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}

input {
@apply w-full outline-1 dark:outline-zinc-900;
@apply h-16 w-full text-xl outline-1 dark:outline-zinc-900;
}

button,
Expand Down
2 changes: 1 addition & 1 deletion app/r/[slug]/components/BackToTop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function BackToTop() {
return (
<button
aria-label={buttonText}
className="button fixed bottom-8 right-8"
className="button fixed bottom-8 right-6"
onClick={scrollToTop}
>
<IconArrowUp height="32" width="32" />
Expand Down
2 changes: 1 addition & 1 deletion components/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export default function Search() {
)}

{isDrawerOpen && results && (
<ul className="absolute left-0 top-12 z-50 m-0 w-full list-none rounded-b bg-zinc-200 p-0 dark:bg-zinc-700">
<ul className="absolute left-0 top-16 z-50 m-0 w-full list-none rounded-b bg-zinc-200 p-0 dark:bg-zinc-700">
{results?.data?.children?.map(
({data}, index) =>
data.display_name && (
Expand Down

0 comments on commit 6fe5482

Please sign in to comment.