Skip to content

[website] Fix EmailSubscribe look #38429

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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