Files
freeCodeCamp/client/src/components/Flash/flash.css
manziEric 0c28a2c755 fix: update notification bar z-index (#41160)
* fix: update notification bar z-index

* fix: update notification bar z-index to 100

* fix: update z-index to 100 in flash.css
2021-02-22 13:12:24 +03:00

32 lines
514 B
CSS

.flash-message {
display: flex;
justify-content: space-around;
flex-direction: row-reverse;
margin-bottom: 0px;
padding-top: 3px;
padding-bottom: 3px;
position: fixed;
width: 100%;
z-index: 100;
}
.flash-message div {
max-width: 100%;
overflow-wrap: break-word;
}
.flash-message-enter {
opacity: 0;
}
.flash-message-enter-active {
opacity: 1;
transition: opacity 500ms;
}
.flash-message-exit {
opacity: 1;
}
.flash-message-exit-active {
opacity: 0;
transition: opacity 100ms;
}