Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/plenty-toes-speak.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@commercetools-frontend/application-shell': patch
---

Keep notifications visible when content is scrolled down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const MainContainer = styled.main`
*/
min-width: 0;
overflow-x: hidden;
overflow-y: scroll;
overflow-y: auto;

/*
layout the children. There will always be the page and side notification
Expand Down Expand Up @@ -356,6 +356,7 @@ export const ApplicationShellAuthenticated = (
display: flex;
flex-direction: column;
position: relative;
overflow: hidden auto;

/*
This is only necessary because we have an intermediary <div> wrapping the
Expand Down
Loading