You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aSkelly/scss/component/_alert.scss

23 lines
456 B
SCSS

@use '../utilities/main_utilities' as *;
// Alerts
.alert{
background: $color-secondary-accent;
border-left: 4px solid $color-secondary;
border-right: 4px solid $color-secondary;
padding: .1rem .8rem;
margin-bottom:.5rem;
}
.alert--error{
background: #f05870;
border-color: #e90d30;
}
.alert--warning{
background: #e8e85b;
border-color: #ddde11;
}
.alert--success{
background: #60c572;
border-color: #18ab34;
}