diff --git a/CHANGELOG.md b/CHANGELOG.md index 60fb53a53..c936756e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Improved the spacing around the buttons in the holding detail dialog - Refactored the auth page to standalone ## 2.206.0 - 2025-10-04 diff --git a/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.scss b/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.scss index 02f5d58a1..50b8db3fe 100644 --- a/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.scss +++ b/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.scss @@ -8,5 +8,9 @@ aspect-ratio: 16 / 9; margin: 0 -0.5rem; } + + .button-container { + gap: 0.5rem; + } } } diff --git a/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html b/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html index 08dd05e4b..201b0b899 100644 --- a/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html +++ b/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -424,33 +424,34 @@ (dataSource?.data.length > 0 && data.hasPermissionToReportDataGlitch === true) ) { +
-
- @if (data.hasPermissionToAccessAdminControl) { - Manage Asset Profile... - } - @if ( - dataSource?.data.length > 0 && - data.hasPermissionToReportDataGlitch === true - ) { - Report Data Glitch... - } +
+ @if (data.hasPermissionToAccessAdminControl) { + Manage Asset Profile... + } + @if ( + dataSource?.data.length > 0 && + data.hasPermissionToReportDataGlitch === true + ) { + Report Data Glitch... + } +
}