blob: 3f2f08c003aa7a188e1c85e55c06592780dd1a21 [file] [log] [blame]
Yoshie Muranaka0fc91e72020-02-05 11:23:06 -08001.b-toaster {
2 top: 75px!important; // make sure toasts do not hide top header
3}
4
5.toast {
6 padding: $spacer/2 $spacer/2 $spacer/2 $spacer;
7 border-width: 0 0 0 5px;
8 .close {
9 font-weight: 300;
10 opacity: 1;
11 }
12}
13
14.toast-header {
15 background-color: inherit!important; //override specificity
16 border: none;
17 color: $dark!important; //override specificity
18 padding-bottom: 0;
19}
20
21.toast-body {
22 color: $dark;
23 padding-top: 0;
24}
25
26.b-toast-success .toast {
27 border-left-color: $success!important;
28}
29
30.b-toast-danger .toast {
31 border-left-color: $danger!important;
32}