mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-01 17:03:30 -05:00
15 lines
297 B
CSS
15 lines
297 B
CSS
/*
|
|
For some reason this `div` is needed in order to overidde
|
|
the CSS rules of `ui-components`'s Alert.
|
|
*/
|
|
div.flash-message {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
flex-direction: row;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
position: fixed;
|
|
width: 100%;
|
|
z-index: 150;
|
|
}
|