Skip to content

Commit

Permalink
chore: fix wrong class at Authentication03.vue block example (#449)
Browse files Browse the repository at this point in the history
used grid gap-2 instead of space-y-2
  • Loading branch information
ovyan authored Apr 1, 2024
1 parent 46f7ffb commit f55633a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { Label } from '@/lib/registry/default/ui/label'
<CardContent>
<div class="grid gap-4">
<div class="grid grid-cols-2 gap-4">
<div class="space-y-2">
<div class="grid gap-2">
<Label for="first-name">First name</Label>
<Input id="first-name" placeholder="Max" required />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { Label } from '@/lib/registry/new-york/ui/label'
<CardContent>
<div class="grid gap-4">
<div class="grid grid-cols-2 gap-4">
<div class="space-y-2">
<div class="grid gap-2">
<Label for="first-name">First name</Label>
<Input id="first-name" placeholder="Max" required />
</div>
Expand Down

0 comments on commit f55633a

Please sign in to comment.