Files
2022-12-09 08:36:26 -06:00

60 lines
1.1 KiB
SCSS
Executable File

.#{$rt-namespace}__toast-container {
z-index: $rt-z-index;
position: fixed;
padding: 0;
width: $rt-toast-width;
box-sizing: border-box;
color: $white;
word-break: break-word;
&--top-left {
top: $spacer;
left: $spacer;
}
&--top-center {
top: $spacer;
left: 50%;
margin-inline-start: -($rt-toast-width / 2);
}
&--top-right {
top: $spacer;
right: $spacer;
}
&--bottom-left {
bottom: $spacer;
left: $spacer;
}
&--bottom-center {
bottom: $spacer;
left: 50%;
margin-inline-start: -($rt-toast-width / 2);
}
&--bottom-right {
bottom: $spacer;
right: $spacer;
}
}
@media #{$rt-mobile} {
.#{$rt-namespace}__toast-container {
width: 100vw;
padding: 0;
left: 0;
margin: 0;
&--top-left,
&--top-center,
&--top-right {
top: 0;
}
&--bottom-left,
&--bottom-center,
&--bottom-right {
bottom: 0;
}
&--rtl{
right: 0;
left: initial;
}
}
}