Skip to content

Commit

Permalink
feat(card): tweak card border radius to match material 3
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Aug 5, 2022
1 parent 0511aba commit 9dd39a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/shared/classes/CardClasses.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ export const CardClasses = (props, colors, darkClasses) => {
const { margin } = props;
return {
base: {
common: cls(margin, colors.bg, `rounded overflow-hidden`),
common: cls(margin, colors.bg, `overflow-hidden`),
ios: 'rounded',
material: 'rounded-xl',
shadow: 'shadow',
outline: cls(
`border border-black border-opacity-10`,
Expand Down

0 comments on commit 9dd39a2

Please sign in to comment.