Skip to content

Commit

Permalink
docs: Fix Toast alignment issue
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhabib committed Oct 16, 2024
1 parent bae97a1 commit dcadf13
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const docs: ComponentDocs = {
return {
code,
value: (
<Stack space="large" align="center">
<Stack space="large">
<Toast
id={id}
dedupeKey={id}
Expand Down Expand Up @@ -202,7 +202,7 @@ const docs: ComponentDocs = {
);

const { value } = source(
<Stack space="large" align="center">
<Stack space="large">
<Toast
id={`${id}_1`}
dedupeKey={`${id}_1`}
Expand Down Expand Up @@ -278,7 +278,7 @@ const docs: ComponentDocs = {
);

const { value } = source(
<Stack space="large" align="center">
<Stack space="large">
<Toast
id={id}
dedupeKey={id}
Expand Down Expand Up @@ -340,7 +340,7 @@ const docs: ComponentDocs = {
);

const { value } = source(
<Stack space="large" align="center">
<Stack space="large">
<Toast
id={id}
dedupeKey={id}
Expand Down Expand Up @@ -398,7 +398,7 @@ const docs: ComponentDocs = {
);

const { value } = source(
<Stack space="large" align="center">
<Stack space="large">
<Toast
id={id}
dedupeKey={id}
Expand Down Expand Up @@ -461,7 +461,7 @@ const docs: ComponentDocs = {
);

const { value } = source(
<Stack space="large" align="center">
<Stack space="large">
<Toast
id={id}
dedupeKey={id}
Expand Down

0 comments on commit dcadf13

Please sign in to comment.