mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
45 lines
797 B
SCSS
45 lines
797 B
SCSS
.Notifications {
|
|
@include hidden-scrollbar;
|
|
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding: $padding * 2;
|
|
max-height: 100vh;
|
|
z-index: 100000;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
.notification {
|
|
flex: 0 0;
|
|
padding: $padding;
|
|
border-radius: 3px;
|
|
min-width: 350px;
|
|
max-width: 35vw;
|
|
word-break: break-word;
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: $margin * 2;
|
|
}
|
|
|
|
> .message {
|
|
white-space: pre-line;
|
|
padding-left: $padding;
|
|
padding-right: $padding * 2;
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
@each $status, $color in (ok: $colorOk, error: $colorError, info: $colorInfo) {
|
|
&.#{$status} {
|
|
background: $color;
|
|
color: $color-white;
|
|
box-shadow: 0 0 20px $boxShadow;
|
|
}
|
|
}
|
|
}
|
|
} |