Skip to content

Commit

Permalink
[TextField] Fix CSS isolation issue (#21665)
Browse files Browse the repository at this point in the history
  • Loading branch information
Codetalker777 committed Jul 3, 2020
1 parent a2c0ff5 commit 465dc89
Showing 1 changed file with 1 addition and 2 deletions.
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

0 comments on commit 465dc89

Please sign in to comment.