Client:QuickButtons:Fix padding.

This commit is contained in:
Vlada Gazizova 2024-08-07 15:33:18 +03:00
parent 0cbf7e5e88
commit 31408a3c6c
2 changed files with 14 additions and 3 deletions

View File

@ -232,7 +232,7 @@ const StyledTableRow = styled(TableRow)`
.no-extra-space { .no-extra-space {
p { p {
margin-inline-end: 0 !important; margin-inline-end: 8px !important;
} }
} }
`; `;

View File

@ -51,10 +51,21 @@ const contextCss = css`
const StyledTableContainer = styled(TableContainer)` const StyledTableContainer = styled(TableContainer)`
.badges__quickButtons { .badges__quickButtons {
padding-left: 16px;
display: flex; display: flex;
flex-grow: 2; flex-grow: 1;
justify-content: flex-end; justify-content: flex-end;
.badge {
padding-left: 16px;
}
.badge:first-child {
padding-left: 8px;
}
.badge:last-child {
padding-right: 8px;
}
} }
.table-row-selected { .table-row-selected {