36 lines
522 B
SCSS
36 lines
522 B
SCSS
.alert {
|
|
padding: 20px 20px;
|
|
align-self: stretch;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: $baseRadius;
|
|
|
|
a {
|
|
color: inherit;
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.alert-info {
|
|
color: $info;
|
|
background: rgba($info, .2);
|
|
}
|
|
|
|
.alert-success {
|
|
color: $success;
|
|
background: rgba($success, .2);
|
|
}
|
|
|
|
.alert-danger,
|
|
.alert-error {
|
|
color: $danger;
|
|
background: rgba($danger, .2);
|
|
}
|
|
|
|
.alert i {
|
|
margin-right: 13px;
|
|
} |