Skip to content

Commit

Permalink
1046 Fix ui issue (#1307)
Browse files Browse the repository at this point in the history
  • Loading branch information
AshishViradiya153 authored Oct 28, 2024
1 parent 9321fca commit 6f37a75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/links/link-sheet/og-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export default function OGSection({
</div>
<label
htmlFor="image"
className="group relative mt-1 flex aspect-[1200/630] h-full min-h-[14rem] cursor-pointer flex-col items-center justify-center rounded-md border border-input bg-white shadow-sm transition-all hover:border-muted-foreground hover:bg-gray-50 hover:ring-muted-foreground dark:bg-gray-800 hover:dark:bg-transparent"
className="group relative mt-1 flex aspect-auto h-full min-h-[14rem] cursor-pointer flex-col items-center justify-center rounded-md border border-input bg-white shadow-sm transition-all hover:border-muted-foreground hover:bg-gray-50 hover:ring-muted-foreground dark:bg-gray-800 hover:dark:bg-transparent sm:aspect-[1200/630]"
>
{false && (
<div className="absolute z-[5] flex h-full w-full items-center justify-center rounded-md bg-white">
Expand Down
2 changes: 1 addition & 1 deletion components/links/link-sheet/watermark-panel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default function WatermarkConfigSheet({
onChange={handleInputChange}
className="focus:ring-inset"
/>
<div className="space-x-1">
<div className="space-x-1 space-y-1">
{["email", "date", "time", "link", "ipAddress"].map((item) => (
<Button
key={item}
Expand Down
2 changes: 1 addition & 1 deletion components/links/link-sheet/watermark-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export default function WatermarkSection({
}}
className="focus:ring-inset"
/>
<div className="space-x-1">
<div className="space-x-1 space-y-1">
{["email", "date", "time", "link", "ipAddress"].map((item) => (
<Button
key={item}
Expand Down

0 comments on commit 6f37a75

Please sign in to comment.