styles.scss
23 lines
| 1 | .give-campaign-components-gridLayout { |
| 2 | background-color: #d9d9d9; |
| 3 | padding: 16px; |
| 4 | margin-bottom: 16px; |
| 5 | |
| 6 | &__columns { |
| 7 | padding: 8px; |
| 8 | gap: 8px; |
| 9 | border-radius: 2px; |
| 10 | border: 1px dashed #000000; |
| 11 | display: flex; |
| 12 | justify-content: space-between; |
| 13 | flex-direction: row; |
| 14 | |
| 15 | &-item { |
| 16 | flex: 1; |
| 17 | height: 42px; |
| 18 | border-radius: 2px; |
| 19 | background-color: #2271b1; |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 |