This commit is contained in:
2026-01-05 12:47:14 +08:00
commit 1fc846fae3
1614 changed files with 162035 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
@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;
}
}