1.b-toaster { 2 top: 75px!important; // make sure toasts do not hide top header 3} 4 5// Toast component and status icon style 6.toast { 7 padding: $spacer/2 $spacer/2 $spacer/2 $spacer+2; 8 border-width: 0 0 0 3px; 9 box-shadow: $box-shadow; 10 .close { 11 font-weight: 300; 12 opacity: 1; 13 } 14} 15 16.toast-icon svg { 17 position: absolute; 18 top: 20px; 19 left: 20px; 20} 21 22.toast-header { 23 background-color: inherit!important; //override specificity 24 border: none; 25 color: theme-color("dark")!important; //override specificity 26 padding-bottom: 0; 27} 28 29.toast-body { 30 color: theme-color("dark"); 31 padding-top: 0; 32} 33 34.b-toast-success .toast { 35 border-left-color: theme-color("success")!important; 36 background-color: theme-color-light("success")!important; 37} 38 39.b-toast-info .toast { 40 border-left-color: theme-color("info")!important; 41 background-color: theme-color-light("info")!important; 42} 43 44.b-toast-danger .toast { 45 border-left-color: theme-color("danger")!important; 46 background-color: theme-color-light("danger")!important; 47} 48 49.b-toast-warning .toast { 50 border-left-color: theme-color("warning")!important; 51 background-color: theme-color-light("warning")!important; 52}