Skip to content

Commit

Permalink
feat: spacing safari values
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarka Chwastkova committed Jul 10, 2024
1 parent 812154b commit 7ea22cc
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions packages/orbit-components/src/common/tailwind/spacing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7ea22cc

Please sign in to comment.