Skip to content

Commit

Permalink
[website] Fix EmailSubscribe look (#38429)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Aug 11, 2023
1 parent c8cf242 commit 7770430
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3717,7 +3717,7 @@ A big thanks to the 19 contributors who made this release possible. Here are som
- [docs] Add webpack alias for legacy utils package (#33376) @jgbae
- [docs] Improve external link icons synonyms (#33257) @davidgarciab
- [examples] Update Base UI with Tailwind CSS to use the latest versions of the dependencies (#33401) @mnajdova
- [examples] Add MUI base example (#33154) @siriwatknp
- [examples] Add Base UI example (#33154) @siriwatknp

### Core

Expand Down
4 changes: 2 additions & 2 deletions docs/src/components/footer/EmailSubscribe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ export default function EmailSubscribe({ sx }: { sx?: SxProps<Theme> }) {
borderColor: 'primary.500',
},
[`& .${inputBaseClasses.input}`]: {
borderRadius: `calc(${theme.spacing(1)} - 1px)`,
borderRadius: `calc(${theme.shape.borderRadius}px - 1px)`,
py: '11px',
px: 1,
px: 1.5,
},
}),
(theme) =>
Expand Down

0 comments on commit 7770430

Please sign in to comment.