Browse Source

fix: Typography ediable style (#34518)

- [x] Fix Editable Textarea height jump in Firefox
- [x] Fix Editable Typography.Title confirm icon position
pull/34519/head
afc163 3 years ago
committed by GitHub
parent
commit
f3c5c17474
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      components/typography/style/index.less

3
components/typography/style/index.less

@ -217,6 +217,9 @@
// Fix Editable Textarea flash in Firefox
textarea {
// https://stackoverflow.com/a/7695964/3040605
height: 1em;
margin: 0 !important;
/* stylelint-disable-next-line property-no-vendor-prefix */
-moz-transition: none;
}

Loading…
Cancel
Save