Skip to content
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

[TextField] Fix CSS isolation issue #21665

Merged
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
3 changes: 1 addition & 2 deletions packages/material-ui/src/OutlinedInput/NotchedOutline.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export const styles = (theme) => {
return {
/* Styles applied to the root element. */
root: {
textAlign: 'left',
position: 'absolute',
bottom: 0,
right: 0,
Expand All @@ -24,7 +25,6 @@ export const styles = (theme) => {
},
/* Styles applied to the legend element when `labelWidth` is provided. */
legend: {
textAlign: 'left',
padding: 0,
lineHeight: '11px', // sync with `height` in `legend` styles
transition: theme.transitions.create('width', {
Expand All @@ -36,7 +36,6 @@ export const styles = (theme) => {
legendLabelled: {
display: 'block',
width: 'auto',
textAlign: 'left',
padding: 0,
height: 11, // sync with `lineHeight` in `legend` styles
fontSize: '0.75em',
Expand Down