Skip to content

Commit

Permalink
[EuiTextArea] Fix missed CSS conversion that VRT tests caught πŸŽ‰
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen committed Jun 5, 2024
1 parent 5a0ebfb commit 9b14b6e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ export const euiTextAreaStyles = (euiThemeContext: UseEuiTheme) => {
/* Give more spacing between multiple lines */
line-height: ${euiTheme.font.lineHeightMultiplier};
/* <textarea>s default to 'inline-block', which causes an extra 2-3px of
* unnecessary height within its parent 'block' form control wrapper.
* @see https://stackoverflow.com/a/27536461/4294462 */
display: block;
&:invalid {
${formStyles.invalid}
}
Expand Down

0 comments on commit 9b14b6e

Please sign in to comment.