mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
32 lines
560 B
SCSS
32 lines
560 B
SCSS
|
@import '../constants/dimensions';
|
||
|
@import '../constants/colors';
|
||
|
|
||
|
.toast {
|
||
|
position: absolute;
|
||
|
z-index: 100;
|
||
|
bottom: $padding-md;
|
||
|
right: $padding-md;
|
||
|
background: $bg-light;
|
||
|
color: $font-light-bg;
|
||
|
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
|
||
|
|
||
|
.toast__message,
|
||
|
.toast__action {
|
||
|
padding: $padding-sm $padding-md;
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
|
.toast__message {
|
||
|
border-right: 1px solid $hl-md;
|
||
|
}
|
||
|
|
||
|
.toast__action {
|
||
|
color: $font-light-bg;
|
||
|
|
||
|
&:hover {
|
||
|
color: $font-super-light-bg;
|
||
|
background: rgba(0, 0, 0, 0.05);
|
||
|
}
|
||
|
}
|
||
|
}
|