Browse Source

fix(admin-ui): Fix styling of order history

Michael Bromley 6 years ago
parent
commit
8c5ff50831

+ 3 - 3
admin-ui/src/app/order/components/order-history/order-history.component.scss

@@ -110,21 +110,21 @@
 }
 
 .success {
-    .timeline:before {
+    .timeline:after {
         background-color: $color-success-200;
         border: 1px solid $color-success-400;
     }
 }
 
 .error {
-    .timeline:before {
+    .timeline:after {
         background-color: $color-error-200;
         border: 1px solid $color-error-400;
     }
 }
 
 .warning {
-    .timeline:before {
+    .timeline:after {
         background-color: $color-warning-200;
         border: 1px solid $color-warning-400;
     }