Skip to content

Commit 4e9ab23

Browse files
committed
refactor: remove unnecessary space in flex container
1 parent ceac7ce commit 4e9ab23

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

website/app/components/examples/provider.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const Positions = () => {
8686
setToastPosition(position);
8787
};
8888
return (
89-
<div className="flex flex-col space-y-2">
89+
<div className="flex flex-col space-y-0">
9090
<div className="flex items-center space-x-2 overflow-y-auto py-2">
9191
<Button
9292
variant="outline"
@@ -161,7 +161,7 @@ const Theme = () => {
161161
};
162162

163163
return (
164-
<div className="flex flex-col space-y-2">
164+
<div className="flex flex-col space-y-0">
165165
<div className="flex items-center justify-between">
166166
<div className="flex items-center space-x-2 py-2">
167167
<Button

website/app/components/examples/useToast.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const UseToastVariantExamples = () => {
9090
};
9191

9292
return (
93-
<div className="flex flex-col space-y-2">
93+
<div className="flex flex-col space-y-0">
9494
<div className="flex items-center space-x-2 overflow-y-auto pb-2">
9595
<Button variant="outline" onClick={() => handleDefault()}>
9696
default

0 commit comments

Comments
 (0)