36 lines
671 B
SCSS
36 lines
671 B
SCSS
@import "../popup/index";
|
|
|
|
.nut-notify {
|
|
box-sizing: border-box;
|
|
display: block;
|
|
width: 100%;
|
|
min-height: $notify-height;
|
|
padding: $notify-padding;
|
|
font-size: $notify-font-size;
|
|
line-height: $notify-line-height;
|
|
color: $notify-text-color;
|
|
text-align: center;
|
|
word-wrap: break-word;
|
|
white-space: pre-wrap;
|
|
|
|
&--base {
|
|
background: $notify-base-background-color;
|
|
}
|
|
|
|
&--primary {
|
|
background: $notify-primary-background-color;
|
|
}
|
|
|
|
&--success {
|
|
background: $notify-success-background-color;
|
|
}
|
|
|
|
&--danger {
|
|
background: $notify-danger-background-color;
|
|
}
|
|
|
|
&--warning {
|
|
background: $notify-warning-background-color;
|
|
}
|
|
}
|