mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
5e80bd5711
* change colours for warning * update the warning banner to display whatever is passed in.
18 lines
341 B
SCSS
18 lines
341 B
SCSS
.warning-banner {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
background-color: $warning;
|
|
color: $black;
|
|
padding: 15px 20px;
|
|
border-radius: $border-radius;
|
|
border: 1px solid $warning-border;
|
|
font-size: $x-small;
|
|
margin: 0 0 25px;
|
|
|
|
&__message {
|
|
flex-grow: 1;
|
|
line-height: 20px;
|
|
}
|
|
}
|