powr-sdk-web 1.9.3 → 1.9.4

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.
@@ -580,15 +580,19 @@ var styles = {
580
580
  position: 'relative',
581
581
  display: 'flex',
582
582
  alignItems: 'center',
583
- width: '100%'
583
+ width: '100%',
584
+ minHeight: '48px'
584
585
  },
585
586
  passwordInput: {
586
587
  paddingRight: '45px',
587
- width: '100%'
588
+ width: '100%',
589
+ boxSizing: 'border-box'
588
590
  },
589
591
  eyeButton: {
590
592
  position: 'absolute',
591
593
  right: '12px',
594
+ top: '50%',
595
+ transform: 'translateY(-50%)',
592
596
  background: 'none',
593
597
  border: 'none',
594
598
  cursor: 'pointer',
@@ -597,7 +601,8 @@ var styles = {
597
601
  alignItems: 'center',
598
602
  justifyContent: 'center',
599
603
  color: '#9ca3af',
600
- transition: 'color 0.2s ease'
604
+ transition: 'color 0.2s ease',
605
+ zIndex: 1
601
606
  },
602
607
  eyeIcon: {
603
608
  width: '20px',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "powr-sdk-web",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "build": "babel src -d dist --copy-files",