Skip to content

Commit

Permalink
fix: screen height, input change not working
Browse files Browse the repository at this point in the history
  • Loading branch information
mvriu5 committed Aug 2, 2024
1 parent 3746fd3 commit b7a9b1c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "griller",
"license": "MIT",
"version": "1.0.12",
"version": "1.0.13",
"private": false,
"repository": {
"url": "https://github.com/mvriu5/griller"
Expand Down
4 changes: 3 additions & 1 deletion src/app/lab/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default function Home() {
</span>
</div>

<div className={"grid grid-cols-1 space-y-8 2xl:space-y-0 2xl:grid-cols-2 2xl:space-x-16 pt-4"}>
<div className={"grid grid-cols-1 space-y-8 2xl:space-y-0 2xl:grid-cols-2 2xl:space-x-16 pt-4 pb-52"}>
<div className={"flex flex-col space-y-2"}>
<span className={"text-sm text-zinc-700 font-medium"}>Customize</span>
<div className={"h-max flex flex-col rounded-lg border border-zinc-200 bg-zinc-50"}>
Expand All @@ -84,12 +84,14 @@ export default function Home() {
label={"Title"}
preSelectedValue={"Toast Component"}
size={40}
value={title}
onChange={(e) => setTitle(e.target.value)}
/>
<Input placeholder={"Second Title"}
label={"Second Title"}
preSelectedValue={"This is a Toast Component!"}
size={60}
value={secondTitle}
onChange={(e) => setSecondTitle(e.target.value)}
/>
<div className={"flex flex-col sm:flex-row sm:space-x-8 space-x-0 space-y-2 sm:space-y-0"}>
Expand Down

0 comments on commit b7a9b1c

Please sign in to comment.