mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
745 B
57 lines
745 B
//
|
|
// Component: Toasts
|
|
//
|
|
|
|
.toasts-top-right {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: $zindex-toasts;
|
|
|
|
&.fixed {
|
|
position: fixed;
|
|
}
|
|
}
|
|
|
|
.toasts-top-left {
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
z-index: $zindex-toasts;
|
|
|
|
&.fixed {
|
|
position: fixed;
|
|
}
|
|
}
|
|
|
|
.toasts-bottom-right {
|
|
bottom: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
z-index: $zindex-toasts;
|
|
|
|
&.fixed {
|
|
position: fixed;
|
|
}
|
|
}
|
|
|
|
.toasts-bottom-left {
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
z-index: $zindex-toasts;
|
|
|
|
&.fixed {
|
|
position: fixed;
|
|
}
|
|
}
|
|
|
|
.toast {
|
|
@each $name, $color in $theme-colors {
|
|
@include toast-variant($name, $color);
|
|
}
|
|
@each $name, $color in $colors {
|
|
@include toast-variant($name, $color);
|
|
}
|
|
}
|