@umami/react-zen 0.7.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -916,6 +916,7 @@
916
916
  border: var(--border);
917
917
  border-radius: var(--border-radius);
918
918
  box-shadow: var(--box-shadow);
919
+ outline: none;
919
920
  }
920
921
  .List_separator {
921
922
  border-bottom: var(--border);
@@ -1059,6 +1060,7 @@
1059
1060
 
1060
1061
  /* src/components/TextField.module.css */
1061
1062
  .TextField_textarea {
1063
+ font-family: inherit;
1062
1064
  min-height: 60px;
1063
1065
  min-width: 140px;
1064
1066
  }
@@ -1339,7 +1341,7 @@
1339
1341
  /* src/components/PasswordField.module.css */
1340
1342
  .PasswordField_icon {
1341
1343
  position: absolute;
1342
- top: 9px;
1344
+ top: 12px;
1343
1345
  right: 9px;
1344
1346
  }
1345
1347
 
@@ -1734,13 +1736,16 @@
1734
1736
  }
1735
1737
 
1736
1738
  /* src/components/TextArea.module.css */
1737
- .TextArea_none {
1739
+ .TextArea_textarea {
1740
+ font-family: inherit;
1741
+ }
1742
+ .TextArea_resize-none textarea {
1738
1743
  resize: none;
1739
1744
  }
1740
- .TextArea_horizontal {
1745
+ .TextArea_resize-horizontal textarea {
1741
1746
  resize: horizontal;
1742
1747
  }
1743
- .TextArea_vertical {
1748
+ .TextArea_resize-vertical textarea {
1744
1749
  resize: vertical;
1745
1750
  }
1746
1751