Add semantic token for notifications text-segment fixed height

This commit is contained in:
2026-06-01 16:47:06 +02:00
parent 8da817bf65
commit 632de4aef5
3 changed files with 5 additions and 3 deletions
+1
View File
@@ -170,6 +170,7 @@
--layout-object-card-mobile-width: var(--dimension-object-card-mobile-width);
--layout-object-card-mobile-height: var(--dimension-object-card-mobile-height);
--layout-object-card-desktop-breakpoint: var(--dimension-object-card-desktop-breakpoint);
--layout-notifications-text-segment-fixed-height: 200px;
--layout-object-group-card-min-width: var(--dimension-object-group-card-min-width);
--layout-object-group-card-max-width: var(--dimension-object-group-card-max-width);
--surface-object-card-lower-segment: var(--color-white);
+3 -3
View File
@@ -21,8 +21,8 @@
width: var(--layout-object-card-shared-width);
}
.sg-notifications-pattern__text-segment {
height: 200px;
.sg-notifications-pattern__card > .sg-notifications-pattern__text-segment {
height: var(--layout-notifications-text-segment-fixed-height);
}
@media (max-width: 767px) {
@@ -33,7 +33,7 @@
flex: 1 1 auto;
}
.sg-notifications-pattern__text-segment {
.sg-notifications-pattern__card > .sg-notifications-pattern__text-segment {
height: auto;
}
}