Skip to content

Commit

Permalink
fixed gap
Browse files Browse the repository at this point in the history
  • Loading branch information
vicky-comeau committed Nov 27, 2024
1 parent 8823e6f commit 581e7f6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/components/src/Disclosure/docs/description.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function Example() {
<Div width="100%" paddingX="core_320" paddingY="core_480">
<Disclosure>
<DisclosureHeader>
<Inline columnGap="inline-sm" alignY="baseline">
<Inline columnGap="inline-sm" rowGap="core_0" alignY="baseline">
<Text>Workleap Officevibe</Text>
<Text color="neutral-weak" size="sm">Engagement and Feedback</Text>
</Inline>
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/Disclosure/docs/disabled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function Example() {
<Disclosure isDisabled>
<DisclosureHeader>
<SparklesIcon />
<Inline columnGap="inline-sm" alignY="baseline">
<Inline columnGap="inline-sm" rowGap="core_0" alignY="baseline">
<Text>Workleap Officevibe</Text>
<Text color="neutral-disabled" size="sm">Engagement and Feedback</Text>
</Inline>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const Default = {
<h1>Description</h1>
<Disclosure {...args}>
<DisclosureHeader level={2}>
<Inline columnGap="inline-sm" alignY="baseline">
<Inline columnGap="inline-sm" rowGap="core_0" alignY="baseline">
<Text>Disclosure Header</Text>
<Text color="neutral-weak" size="sm">Disclosure Description</Text>
</Inline>
Expand All @@ -58,7 +58,7 @@ export const Default = {
<Disclosure {...args}>
<DisclosureHeader level={2}>
<SparklesIcon />
<Inline columnGap="inline-sm" alignY="baseline">
<Inline columnGap="inline-sm" rowGap="core_0" alignY="baseline">
<Text>Shipping, Delivery Times, and Easy Returns Policy Overview</Text>
<Text color="neutral-weak" size="sm">Explore our comprehensive shipping options, estimated delivery times for various regions, and our simple, customer-friendly returns process to make sure you feel comfortable with every purchase.</Text>
</Inline>
Expand Down Expand Up @@ -107,7 +107,7 @@ const StateTemplate = (args: Partial<DisclosureProps>) => (
<Disclosure {...args}>
<DisclosureHeader level={2}>
<SparklesIcon />
<Inline columnGap="inline-sm" alignY="baseline">
<Inline columnGap="inline-sm" rowGap="core_0" alignY="baseline">
<Text>Shipping, Delivery Times, and Easy Returns Policy Overview</Text>
<Text color={args.isDisabled ? "neutral-disabled" : "neutral-weak"} size="sm">Explore our comprehensive shipping options, estimated delivery times for various regions, and our simple, customer-friendly returns process to make sure you feel comfortable with every purchase.</Text>
</Inline>
Expand Down Expand Up @@ -180,7 +180,7 @@ export const Zoom = {
<Disclosure {...args} className="zoom-in">
<DisclosureHeader level={2}>
<SparklesIcon />
<Inline columnGap="inline-sm" alignY="baseline">
<Inline columnGap="inline-sm" rowGap="core_0" alignY="baseline">
<Text>Shipping, Delivery Times, and Easy Returns Policy Overview</Text>
<Text color="neutral-weak" size="sm">Explore our comprehensive shipping options, estimated delivery times for various regions, and our simple, customer-friendly returns process to make sure you feel comfortable with every purchase.</Text>
</Inline>
Expand All @@ -193,7 +193,7 @@ export const Zoom = {
<Disclosure {...args} className="zoom-out">
<DisclosureHeader level={2}>
<SparklesIcon />
<Inline columnGap="inline-sm" alignY="baseline">
<Inline columnGap="inline-sm" rowGap="core_0" alignY="baseline">
<Text>Shipping, Delivery Times, and Easy Returns Policy Overview</Text>
<Text color="neutral-weak" size="sm">Explore our comprehensive shipping options, estimated delivery times for various regions, and our simple, customer-friendly returns process to make sure you feel comfortable with every purchase.</Text>
</Inline>
Expand Down

0 comments on commit 581e7f6

Please sign in to comment.