Skip to content

Commit

Permalink
refactor: remove unnecessary space in flex container
Browse files Browse the repository at this point in the history
  • Loading branch information
pheralb committed Jul 23, 2024
1 parent ceac7ce commit 4e9ab23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions website/app/components/examples/provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const Positions = () => {
setToastPosition(position);
};
return (
<div className="flex flex-col space-y-2">
<div className="flex flex-col space-y-0">
<div className="flex items-center space-x-2 overflow-y-auto py-2">
<Button
variant="outline"
Expand Down Expand Up @@ -161,7 +161,7 @@ const Theme = () => {
};

return (
<div className="flex flex-col space-y-2">
<div className="flex flex-col space-y-0">
<div className="flex items-center justify-between">
<div className="flex items-center space-x-2 py-2">
<Button
Expand Down
2 changes: 1 addition & 1 deletion website/app/components/examples/useToast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const UseToastVariantExamples = () => {
};

return (
<div className="flex flex-col space-y-2">
<div className="flex flex-col space-y-0">
<div className="flex items-center space-x-2 overflow-y-auto pb-2">
<Button variant="outline" onClick={() => handleDefault()}>
default
Expand Down

0 comments on commit 4e9ab23

Please sign in to comment.