| 1 |
/* |
| 2 |
* Editor-only spacing. |
| 3 |
* |
| 4 |
* The controls opt into __nextHasNoMarginBottom, which is where WordPress is |
| 5 |
* going and which keeps the deprecation notice out of the console -- but it |
| 6 |
* leaves them touching. The stable component library has no vertical stack to |
| 7 |
* do this with (VStack is still marked experimental, and an API WordPress |
| 8 |
* reserves the right to remove is a poor thing to hang a block on), so six |
| 9 |
* lines of flexbox do it instead. |
| 10 |
*/ |
| 11 |
.cryptx-block-fields { |
| 12 |
display: flex; |
| 13 |
flex-direction: column; |
| 14 |
gap: 16px; |
| 15 |
} |
| 16 |
|