From 7ea22cc4e1033d27c2c59c77fb7d1a711eaeac3e Mon Sep 17 00:00:00 2001 From: Sarka Chwastkova Date: Wed, 10 Jul 2024 12:54:27 +0200 Subject: [PATCH] feat: spacing safari values --- .../src/common/tailwind/spacing.ts | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/orbit-components/src/common/tailwind/spacing.ts b/packages/orbit-components/src/common/tailwind/spacing.ts index 3b58595ea8..f9c74093f0 100644 --- a/packages/orbit-components/src/common/tailwind/spacing.ts +++ b/packages/orbit-components/src/common/tailwind/spacing.ts @@ -251,17 +251,17 @@ export const gapTokens = { }; const safariVerticalTokens = { - [SPACING.none]: "safari:[&>*:not(:last-child)]:space-y-none", - [SPACING.XXXSmall]: "safari:[&>*:not(:last-child)]:space-y-xxxs", - [SPACING.XXSmall]: "safari:[&>*:not(:last-child)]:space-y-xxs", - [SPACING.XSmall]: "safari:[&>*:not(:last-child)]:space-y-xs", - [SPACING.small]: "safari:[&>*:not(:last-child)]:space-y-sm", - [SPACING.medium]: "safari:[&>*:not(:last-child)]:space-y-md", - [SPACING.large]: "safari:[&>*:not(:last-child)]:space-y-lg", - [SPACING.XLarge]: "safari:[&>*:not(:last-child)]:space-y-xl", - [SPACING.XXLarge]: "safari:[&>*:not(:last-child)]:space-y-xxl", - [SPACING.XXXLarge]: "safari:[&>*:not(:last-child)]:space-y-xxxl", - [SPACING.reverse]: "safari:[&>*:not(:last-child)]:space-y-reverse", + [SPACING.none]: "safari:not(:last-child):*:space-y-none", + [SPACING.XXXSmall]: "safari:not(:last-child):*:space-y-xxxs", + [SPACING.XXSmall]: "safari:not(:last-child):*:space-y-xxs", + [SPACING.XSmall]: "safari:not(:last-child):*:space-y-xs", + [SPACING.small]: "safari:not(:last-child):*:space-y-sm", + [SPACING.medium]: "safari:not(:last-child):*:space-y-md", + [SPACING.large]: "safari:not(:last-child):*:space-y-lg", + [SPACING.XLarge]: "safari:not(:last-child):*:space-y-xl", + [SPACING.XXLarge]: "safari:not(:last-child):*:space-y-xxl", + [SPACING.XXXLarge]: "safari:not(:last-child):*:space-y-xxxl", + [SPACING.reverse]: "safari:not(:last-child):*:space-y-reverse", [QUERIES.MEDIUMMOBILE]: { [SPACING.none]: "mm:safari:[&>*:not(:last-child)]:space-y-none", [SPACING.XXXSmall]: "mm:safari:[&>*:not(:last-child)]:space-y-xxxs",