diff --git a/apps/red-ui/src/app/modules/file-preview/components/selected-annotations-table/selected-annotations-table.component.html b/apps/red-ui/src/app/modules/file-preview/components/selected-annotations-table/selected-annotations-table.component.html
index 86c807318..a801712b9 100644
--- a/apps/red-ui/src/app/modules/file-preview/components/selected-annotations-table/selected-annotations-table.component.html
+++ b/apps/red-ui/src/app/modules/file-preview/components/selected-annotations-table/selected-annotations-table.component.html
@@ -1,6 +1,8 @@
@for (column of _columns(); track column.label) {
-
{{ column.label }}
+
+
+
}
@for (row of _data(); track $index) {
@for (cell of row; track cell.label) {
diff --git a/apps/red-ui/src/app/modules/file-preview/components/selected-annotations-table/selected-annotations-table.component.scss b/apps/red-ui/src/app/modules/file-preview/components/selected-annotations-table/selected-annotations-table.component.scss
index e3e006557..4c49205c1 100644
--- a/apps/red-ui/src/app/modules/file-preview/components/selected-annotations-table/selected-annotations-table.component.scss
+++ b/apps/red-ui/src/app/modules/file-preview/components/selected-annotations-table/selected-annotations-table.component.scss
@@ -12,6 +12,11 @@
top: 0;
z-index: 1;
background: white;
+
+ label {
+ opacity: 0.7;
+ font-weight: normal;
+ }
}
.cell {
diff --git a/apps/red-ui/src/app/modules/shared/components/approve-warning-details/approve-warning-details.component.scss b/apps/red-ui/src/app/modules/shared/components/approve-warning-details/approve-warning-details.component.scss
index 7b5d3cd12..edae56a05 100644
--- a/apps/red-ui/src/app/modules/shared/components/approve-warning-details/approve-warning-details.component.scss
+++ b/apps/red-ui/src/app/modules/shared/components/approve-warning-details/approve-warning-details.component.scss
@@ -2,10 +2,10 @@
:host {
height: 250px;
+ margin-bottom: 16px;
}
.scrollable {
- margin-bottom: 8px;
overflow-y: auto;
max-height: 240px;
@include common-mixins.scroll-bar;