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.
23 lines
462 B
23 lines
462 B
4 years ago
|
.#{$namespace}toast-container {
|
||
|
line-height:17px;
|
||
|
position: fixed;
|
||
|
bottom: 50px;
|
||
|
z-index: z("toast");
|
||
|
opacity: 0;
|
||
|
left:50%;
|
||
|
-webkit-transform:translate(-50%,0);
|
||
|
transform:translate(-50%,0);
|
||
|
-webkit-transition: opacity .3s;
|
||
|
transition: opacity .3s;
|
||
|
&.#{$namespace}active{
|
||
|
opacity: .9;
|
||
|
}
|
||
|
}
|
||
|
.#{$namespace}toast-message {
|
||
|
padding: 10px 25px;
|
||
|
background-color: #323232;
|
||
|
text-align: center;
|
||
|
color: #fff;
|
||
|
border-radius: 6px;
|
||
|
font-size: 14px;
|
||
|
}
|