@gravity-ui/uikit
Version:
Gravity UI base styling and components
37 lines • 760 B
CSS
.g-dialog-footer {
padding: 28px var(--_--side-padding);
display: flex;
align-items: center;
justify-content: flex-end;
}
.g-dialog-footer__bts-wrapper {
display: flex;
gap: 10px;
}
.g-dialog-footer__children {
flex-grow: 1;
height: 100%;
align-items: center;
display: flex;
}
.g-dialog-footer__button {
min-width: 128px;
position: relative;
}
.g-dialog-footer__error {
padding: 10px;
color: var(--g-color-text-danger);
}
.g-dialog-footer_mobile {
padding-block: 12px;
flex-direction: column;
align-items: stretch;
justify-content: flex-start;
}
.g-dialog-footer_mobile .g-dialog-footer__bts-wrapper {
flex-direction: column-reverse;
}
.g-dialog-footer_mobile .g-dialog-footer__children {
flex-grow: 0;
height: auto;
}