Set notifications pattern desktop size to company card bounds

This commit is contained in:
2026-06-01 16:31:10 +02:00
parent 89d899e694
commit 7624ace59f
3 changed files with 22 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
/* ========================================================= */
/* Patterns: Notifications */
/* ========================================================= */
.sg-notifications-pattern__card {
min-width: var(--layout-object-card-min-width);
max-width: var(--layout-object-card-max-width);
height: 200px;
}
@media (max-width: 767px) {
.sg-notifications-pattern__card {
min-width: 0;
max-width: none;
height: auto;
}
}