style.module.scss
18 lines
| 1 | .input { |
| 2 | background: #fff; |
| 3 | height: 36px; |
| 4 | display: inline-flex; |
| 5 | align-items: center; |
| 6 | justify-content: center; |
| 7 | min-width: 150px; |
| 8 | border-radius: 5px; |
| 9 | border: 1px solid #ddd !important; |
| 10 | border-bottom: 3px solid #ddd !important; |
| 11 | |
| 12 | &:active, |
| 13 | &:focus { |
| 14 | box-shadow: none !important; |
| 15 | outline: 0 !important; |
| 16 | } |
| 17 | } |
| 18 |