Skip to content

Commit

Permalink
feat(tailwind): add px (1px) spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
mainframev committed Sep 8, 2023
1 parent a6593ba commit 448dc8e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand Down Expand Up @@ -994,6 +995,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand Down Expand Up @@ -1740,6 +1742,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand Down Expand Up @@ -1797,6 +1800,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand Down Expand Up @@ -2077,6 +2081,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"md": "16px",
"min": "min-content",
"none": "0px",
"px": "1px",
"screen": "100vh",
"separator": "1px",
"sm": "12px",
Expand Down Expand Up @@ -2108,6 +2113,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand Down Expand Up @@ -2239,6 +2245,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand All @@ -2256,6 +2263,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"md": "16px",
"min": "min-content",
"none": "none",
"px": "1px",
"screen": "100vh",
"sm": "12px",
"xl": "32px",
Expand Down Expand Up @@ -2483,6 +2491,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"table": "12px 16px",
"xl": "32px",
Expand Down Expand Up @@ -2880,6 +2889,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand All @@ -2893,6 +2903,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand All @@ -2918,6 +2929,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand All @@ -2931,6 +2943,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand Down Expand Up @@ -3348,6 +3361,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand Down Expand Up @@ -3436,6 +3450,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"lg": "24px",
"md": "16px",
"none": "0px",
"px": "1px",
"sm": "12px",
"xl": "32px",
"xs": "8px",
Expand Down Expand Up @@ -3484,6 +3499,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"md": "16px",
"min": "min-content",
"none": "0px",
"px": "1px",
"screen": "100vw",
"sm": "12px",
"xl": "32px",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import foundation from "./defaultFoundation";
const spacings = {
none: "0px",
0: "0px",
px: "1px",
xxxs: foundation.space.xxxsmall,
xxs: foundation.space.xxsmall,
xs: foundation.space.xsmall,
Expand Down

0 comments on commit 448dc8e

Please sign in to comment.