Files
cachet-docker/resources/assets/sass/modules/_alerts.scss

24 lines
500 B
SCSS

.alert {
border-radius: 4px;
background: $cachet_yellow;
border: solid 2px $cachet_dark-yellow;
&.alert-success {
background-color: $cachet_green;
border: solid 2px $cachet_dark-green;
color: white;
}
&.alert-info {
background: $cachet_blue;
border: solid 2px $cachet_dark-blue;
color: #FFF;
}
&.alert-danger {
background: $cachet_red;
border: solid 2px $cachet_dark-red;
color: #FFF;
}
}