18 lines
474 B
CSS
18 lines
474 B
CSS
/* ========================================================= */
|
|
/* 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;
|
|
}
|
|
}
|