2025-01-15 19:41:46 +01:00
|
|
|
.components-flex {
|
|
|
|
display: flex;
|
|
|
|
-webkit-box-align: stretch;
|
|
|
|
align-items: stretch;
|
|
|
|
-webkit-box-pack: center;
|
|
|
|
|
|
|
|
.components-h-stack {
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
|
|
|
gap: 32px;
|
|
|
|
}
|
|
|
|
|
2025-01-22 16:44:01 +01:00
|
|
|
.components-v-stack {
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2025-01-15 19:41:46 +01:00
|
|
|
// Fix layout for checkboxes inside a flex-stack.
|
2025-01-22 16:44:01 +01:00
|
|
|
.components-checkbox-control > .components-base-control__field > .components-flex {
|
2025-01-15 19:41:46 +01:00
|
|
|
flex-direction: row;
|
|
|
|
gap: 12px;
|
|
|
|
}
|
|
|
|
}
|
2025-01-22 17:17:13 +01:00
|
|
|
|
|
|
|
.ppcp--horizontal {
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|