Skip to content

Commit

Permalink
refactor(sbb-notification): try removing max-height
Browse files Browse the repository at this point in the history
  • Loading branch information
jeripeierSBB committed Nov 27, 2023
1 parent a7bb489 commit 575824d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/components/notification/notification.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@
);
visibility: var(--sbb-notification-visibility);
opacity: var(--sbb-notification-opacity);
max-height: var(--sbb-notification-max-height);
transition: var(--sbb-notification-transition);
border: var(--sbb-notification-border);
border-radius: var(--sbb-notification-border-radius);
Expand Down Expand Up @@ -206,12 +205,10 @@
from {
visibility: hidden;
opacity: 0;
max-height: 0;
}

to {
visibility: visible;
opacity: 1;
max-height: var(--sbb-notification-max-height);
}
}

0 comments on commit 575824d

Please sign in to comment.