diff --git a/frontend/src/app/components/db-table-row-edit/db-table-row-edit.component.css b/frontend/src/app/components/db-table-row-edit/db-table-row-edit.component.css index d36d2dc80..ff84b5c7b 100644 --- a/frontend/src/app/components/db-table-row-edit/db-table-row-edit.component.css +++ b/frontend/src/app/components/db-table-row-edit/db-table-row-edit.component.css @@ -28,24 +28,29 @@ } } -.row-actions_desktop { +.row-actions { + display: flex; + align-items: center; +} + +.custom-actions_desktop { display: flex; align-items: center; gap: 4px; } @media (width <= 600px) { - .row-actions_desktop { + .custom-actions_desktop { display: none; } } -.row-actions_mobile { +.custom-actions_mobile { display: none; } @media (width <= 600px) { - .row-actions_mobile { + .custom-actions_mobile { display: flex; flex-wrap: wrap; gap: 8px; diff --git a/frontend/src/app/components/db-table-row-edit/db-table-row-edit.component.html b/frontend/src/app/components/db-table-row-edit/db-table-row-edit.component.html index 738e75906..64b995eca 100644 --- a/frontend/src/app/components/db-table-row-edit/db-table-row-edit.component.html +++ b/frontend/src/app/components/db-table-row-edit/db-table-row-edit.component.html @@ -20,24 +20,37 @@