File size: 495 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
@import 'node_modules/@wordpress/base-styles/breakpoints';
@import 'node_modules/@wordpress/base-styles/mixins';
.repository-selection-dialog {
height: 515px;
display: flex;
flex-direction: column;
padding: 32px;
@include break-small {
width: 622px;
}
h1 {
margin-bottom: 8px !important;
}
.formatted-header {
margin: 0;
margin-bottom: 24px !important;
}
}
.github-deployments-dialog .dialog__action-buttons-close {
padding: 0;
margin-top: 32px;
margin-right: 32px;
}
|