Skip to content

Commit

Permalink
feat(tailwind): add rounded-none
Browse files Browse the repository at this point in the history
  • Loading branch information
oreqizer committed Sep 22, 2023
1 parent cf9ee07 commit 11cc418
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"borderRadius": {
"circle": "50%",
"large": "6px",
"none": "0",
"normal": "3px",
"small": "2px",
},
Expand Down Expand Up @@ -1008,6 +1009,7 @@ exports[`orbitPreset should match snapshot 1`] = `
"dialog-desktop": "9px",
"dialog-mobile": "12px",
"large": "6px",
"none": "0",
"normal": "3px",
"small": "2px",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const config: Config = {
},
theme: {
colors: { ...defaultFoundation.palette, transparent: "transparent" },
borderRadius: defaultFoundation["border-radius"],
borderRadius: { ...defaultFoundation["border-radius"], none: "0" },
screens,
lineHeight: { ...defaultFoundation["line-height"], none: "1" },
boxShadow,
Expand Down

0 comments on commit 11cc418

Please sign in to comment.