diff --git a/apps/client/src/features/operator/operator-group/OperatorGroup.module.scss b/apps/client/src/features/operator/operator-group/OperatorGroup.module.scss index 87e280881..e37c00736 100644 --- a/apps/client/src/features/operator/operator-group/OperatorGroup.module.scss +++ b/apps/client/src/features/operator/operator-group/OperatorGroup.module.scss @@ -1,8 +1,9 @@ .group { width: 100%; - /* Fixed: title and meta never wrap, and the group wrapper keeps the list from shrinking the header. */ - height: 2.5rem; - padding: 0.4rem 0.75rem; + /* Padding is kept under the min-height so a single line fits without the list having to shrink the header, + while a taller title still grows the row. */ + min-height: 2.5rem; + padding: 0.25rem 0.75rem; border-left: 0.35rem solid var(--group-colour, $gray-500); background-color: $gray-1350; background: color-mix(in srgb, transparent 88%, var(--group-colour, $gray-500) 12%);