blob: ae6d1bcbfbc538fb432a53208f9382b20ceeafa0 [file] [log] [blame]
beccabroeka30394b2018-12-14 17:19:45 -06001// Overrides style for ngToast notifications
2.ng-toast {
3 margin-top: 9em;
4 .close {
5 margin: .3em;
6 }
7 .title {
8 font-weight: bold;
9 }
10 .ng-toast__message {
11 max-width: 400px;
12 }
13 .alert {
14 color: #333;
15 border-radius: 0;
16 text-align: left;
17 }
18 .alert-success::before {
19 content: "Success!";
20 display: block;
21 font-weight: bold;
22 }
23 .alert-danger::before {
24 content: "Error";
25 display: block;
26 font-weight: bold;
27 }
28}