Skip to content

Commit

Permalink
chore: nits
Browse files Browse the repository at this point in the history
  • Loading branch information
macci001 committed Jan 22, 2025
1 parent 18455c7 commit 5904d13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/docs/content/components/toast/color.raw.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {addToast, Button} from "@heroui/react";

export default function App() {
return (
<div className="flex flex-wrap gap-x-2">
<div className="flex flex-wrap gap-2">
{["default", "primary", "secondary", "success", "warning", "danger"].map((color) => (
<Button
key={color}
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/toast/placement.raw.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function App() {
return (
<>
<ToastProvider placement={placement} toastOffset={placement.includes("top") ? 60 : 0} />
<div className="flex flex-wrap gap-x-2">
<div className="flex flex-wrap gap-2">
{[
"left-top",
"right-top",
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/toast/radius.raw.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {addToast, Button} from "@heroui/react";

export default function App() {
return (
<div className="flex flex-wrap gap-x-2">
<div className="flex flex-wrap gap-2">
{["none", "sm", "md", "lg", "full"].map((radius) => (
<Button
key={radius}
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/toast/variants.raw.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {addToast, Button} from "@heroui/react";

export default function App() {
return (
<div className="flex flex-wrap gap-x-2">
<div className="flex flex-wrap gap-2">
{[
["solid", "solid"],
["bordered", "bordered"],
Expand Down

0 comments on commit 5904d13

Please sign in to comment.