action-buttons.scss
20 lines
| 1 | .jet-form-builder { |
| 2 | &__action-button-wrapper { |
| 3 | display: flex; |
| 4 | width: 100%; |
| 5 | } |
| 6 | |
| 7 | &__submit-wrap { |
| 8 | display: -webkit-box; |
| 9 | display: -ms-flexbox; |
| 10 | display: flex; |
| 11 | align-items: flex-start; |
| 12 | -webkit-box-direction: normal; |
| 13 | -webkit-box-orient: horizontal; |
| 14 | -ms-flex-direction: row; |
| 15 | flex-direction: row; |
| 16 | -webkit-box-pack: justify; |
| 17 | -ms-flex-pack: justify; |
| 18 | width: 100% |
| 19 | } |
| 20 | } |