style.module.scss
23 lines
| 1 | .button { |
| 2 | background: #f7f7f7; |
| 3 | display: inline-flex; |
| 4 | align-items: center; |
| 5 | justify-content: center; |
| 6 | height: 35px; |
| 7 | border-radius: 3px; |
| 8 | border: 1px solid #ddd; |
| 9 | border-bottom: 3px solid #ddd; |
| 10 | cursor: pointer; |
| 11 | padding: 0 16px; |
| 12 | |
| 13 | &:focus { |
| 14 | outline: none; |
| 15 | box-shadow: none; |
| 16 | border-color: #ddd; |
| 17 | } |
| 18 | |
| 19 | &.icon { |
| 20 | padding: 0 8px; |
| 21 | } |
| 22 | } |
| 23 |