fix(miniapp): consolidate member editor actions

This commit is contained in:
2026-03-11 20:13:04 +04:00
parent ac48cece8a
commit 74080c32c6
4 changed files with 139 additions and 81 deletions

View File

@@ -856,6 +856,21 @@ button {
margin-top: 2px;
}
.member-editor-actions {
display: grid;
gap: 10px;
}
.member-editor-actions__close,
.member-editor-actions__button {
width: 100%;
}
.member-editor-actions__grid {
display: grid;
gap: 10px;
}
.modal-action-row {
display: flex;
flex-wrap: wrap;
@@ -964,6 +979,10 @@ button {
.editor-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.member-editor-actions__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 759px) {