1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/notifications/notifications.scss
Sebastian Malton 9a10db837e
fix Notifications blocking items not visually under them from being interacted with (#915)
* fix Notifications blocking items not visually under them from being interacted with

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2020-09-21 14:47:44 -04:00

47 lines
828 B
SCSS

.Notifications {
@include hidden-scrollbar;
position: absolute;
right: 0;
top: 0;
padding: $padding * 2;
max-height: 100vh;
z-index: 100000;
height: min-content!important;
&: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;
}
}
}
}