diff --git a/frontend/app/features/content/shared/references/reference-item.component.html b/frontend/app/features/content/shared/references/reference-item.component.html
index 237598464..e37bd7dc7 100644
--- a/frontend/app/features/content/shared/references/reference-item.component.html
+++ b/frontend/app/features/content/shared/references/reference-item.component.html
@@ -21,7 +21,9 @@
- {{content.schemaDisplayName}}
+
+ {{content.schemaDisplayName}}
+
|
diff --git a/frontend/app/features/content/shared/references/reference-item.component.scss b/frontend/app/features/content/shared/references/reference-item.component.scss
index d6ae419bc..bd7831242 100644
--- a/frontend/app/features/content/shared/references/reference-item.component.scss
+++ b/frontend/app/features/content/shared/references/reference-item.component.scss
@@ -21,13 +21,15 @@
}
.cell-label {
- &:hover {
- position: relative;
+ position: relative;
- .badge {
- @include absolute(1.25rem, .75rem);
- max-width: 500px;
- transition: .2s ease-in all;
+ .badge-container {
+ @include absolute(0, 0, 0, 0);
+ }
+
+ &:hover {
+ .badge-container {
+ left: auto;
}
}
}
\ No newline at end of file
|