diff --git a/UI/Web/src/app/cards/list-item/list-item.component.scss b/UI/Web/src/app/cards/list-item/list-item.component.scss
index c4453d519..6701a296f 100644
--- a/UI/Web/src/app/cards/list-item/list-item.component.scss
+++ b/UI/Web/src/app/cards/list-item/list-item.component.scss
@@ -36,4 +36,13 @@ $triangle-size: 30px;
border-style: solid;
border-width: 0 $triangle-size $triangle-size 0;
border-color: transparent var(--primary-color) transparent transparent;
-}
\ No newline at end of file
+}
+
+h5 {
+ margin-bottom: 0;
+}
+
+.subtitle-with-actionables {
+ font-size: 0.75rem;
+ word-break: break-all;
+ }
\ No newline at end of file
diff --git a/UI/Web/src/app/collections/collection-detail/collection-detail.component.html b/UI/Web/src/app/collections/collection-detail/collection-detail.component.html
index 3f1e5f84a..0b75795b3 100644
--- a/UI/Web/src/app/collections/collection-detail/collection-detail.component.html
+++ b/UI/Web/src/app/collections/collection-detail/collection-detail.component.html
@@ -1,7 +1,7 @@
-
+
{{collectionTag.title}}()
diff --git a/UI/Web/src/app/collections/collection-detail/collection-detail.component.scss b/UI/Web/src/app/collections/collection-detail/collection-detail.component.scss
index 196c98dd9..a262f9e46 100644
--- a/UI/Web/src/app/collections/collection-detail/collection-detail.component.scss
+++ b/UI/Web/src/app/collections/collection-detail/collection-detail.component.scss
@@ -35,4 +35,9 @@
overflow-y: auto;
position: relative;
overscroll-behavior-y: none;
-}
\ No newline at end of file
+}
+
+h2 {
+ margin-bottom: 0;
+ word-break: break-all;
+}
diff --git a/UI/Web/src/app/series-detail/series-detail.component.html b/UI/Web/src/app/series-detail/series-detail.component.html
index 28ab165bd..85203f0a3 100644
--- a/UI/Web/src/app/series-detail/series-detail.component.html
+++ b/UI/Web/src/app/series-detail/series-detail.component.html
@@ -1,7 +1,7 @@
-
+
{{series?.name}}
diff --git a/UI/Web/src/app/series-detail/series-detail.component.scss b/UI/Web/src/app/series-detail/series-detail.component.scss
index 36e3660f7..cb19ae6fe 100644
--- a/UI/Web/src/app/series-detail/series-detail.component.scss
+++ b/UI/Web/src/app/series-detail/series-detail.component.scss
@@ -27,3 +27,8 @@
position: relative;
overscroll-behavior-y: none;
}
+
+.title, .subtitle-with-actionable {
+ word-break: break-all;
+ margin-bottom: 0;
+}
diff --git a/UI/Web/src/app/sidenav/side-nav-companion-bar/side-nav-companion-bar.component.scss b/UI/Web/src/app/sidenav/side-nav-companion-bar/side-nav-companion-bar.component.scss
index 6b20aa117..60cc4989f 100644
--- a/UI/Web/src/app/sidenav/side-nav-companion-bar/side-nav-companion-bar.component.scss
+++ b/UI/Web/src/app/sidenav/side-nav-companion-bar/side-nav-companion-bar.component.scss
@@ -1,9 +1,3 @@
.hide-if-empty:empty {
display: none !important;
}
-
-::ng-deep .companion-bar {
- h1, h2, h3, h4, h5, h6 {
- margin-bottom: 0px;
- }
-}
\ No newline at end of file
diff --git a/UI/Web/src/theme/components/_list.scss b/UI/Web/src/theme/components/_list.scss
index 09ebdd08b..cbfe5ce30 100644
--- a/UI/Web/src/theme/components/_list.scss
+++ b/UI/Web/src/theme/components/_list.scss
@@ -2,6 +2,7 @@
color: var(--list-group-item-text-color);
background-color: var(--list-group-item-bg-color);
border-color: var(--list-group-item-border-color);
+ word-break: break-all;
&:hover {
color: var(--list-group-hover-text-color);
diff --git a/UI/Web/src/theme/components/_modal.scss b/UI/Web/src/theme/components/_modal.scss
index d68d4274c..ede9e7030 100644
--- a/UI/Web/src/theme/components/_modal.scss
+++ b/UI/Web/src/theme/components/_modal.scss
@@ -5,4 +5,8 @@
.modal-content {
background-color: var(--bs-body-bg);
color: var(--body-text-color);
-}
\ No newline at end of file
+}
+
+.modal-title {
+ word-break: break-all;
+}