styles.module.scss
30 lines
| 1 | .inputContainer { |
| 2 | display: flex; |
| 3 | align-items: center; |
| 4 | gap: 20px; |
| 5 | width: 100%; |
| 6 | margin-bottom: var(--givewp-spacing-1); |
| 7 | } |
| 8 | |
| 9 | .input { |
| 10 | flex: 1; |
| 11 | margin: 0; |
| 12 | } |
| 13 | |
| 14 | .editButton { |
| 15 | background: transparent; |
| 16 | border: none; |
| 17 | padding: 0; |
| 18 | cursor: pointer; |
| 19 | display: flex; |
| 20 | align-items: center; |
| 21 | justify-content: center; |
| 22 | flex-shrink: 0; |
| 23 | |
| 24 | svg { |
| 25 | width: 24px; |
| 26 | height: 24px; |
| 27 | transition: stroke 0.2s ease; |
| 28 | } |
| 29 | } |
| 30 |