mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-24 16:01:05 -04:00
25 lines
400 B
CSS
25 lines
400 B
CSS
.flash-message {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
flex-direction: row-reverse;
|
|
margin-bottom: 0px;
|
|
position: fixed;
|
|
width: 100%;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.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;
|
|
}
|