17 lines
257 B
SCSS
17 lines
257 B
SCSS
|
/*===== Toaster =====*/
|
||
|
#toast-container{
|
||
|
margin-top: 65px;
|
||
|
right:0;
|
||
|
z-index: 999;
|
||
|
.toast-success {
|
||
|
background-color: $primary;
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
#toast-container>div{
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
#toast-container>div:hover{
|
||
|
box-shadow: none;
|
||
|
}
|