fleet/frontend/components/WarningBanner/_styles.scss
Gabe Hernandez 5e80bd5711
change smtp warning banner (#443)
* change colours for warning

* update the warning banner to display whatever is passed in.
2021-03-12 11:45:17 +00:00

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;
}
}