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.
25 lines
361 B
SCSS
25 lines
361 B
SCSS
/* Alerts */
|
|
.alert{
|
|
border-radius:1.24rem;
|
|
padding:1.24rem;
|
|
position:relative;
|
|
margin:1rem 0;
|
|
border:1px solid $lightWhite;
|
|
}
|
|
.alert--dismissable{
|
|
padding-right:3rem;
|
|
}
|
|
.alert--dismissable .button-close{
|
|
position:absolute;
|
|
top:0;right:0;
|
|
padding:1.9rem 1rem;
|
|
margin:0;
|
|
}
|
|
.alert--success{
|
|
background: $success;
|
|
}
|
|
.alert--fail{
|
|
background: $fail;
|
|
}
|
|
|