aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-status/index.scss
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/transaction-status/index.scss')
-rw-r--r--ui/app/components/transaction-status/index.scss33
1 files changed, 0 insertions, 33 deletions
diff --git a/ui/app/components/transaction-status/index.scss b/ui/app/components/transaction-status/index.scss
deleted file mode 100644
index 26a1f5d38..000000000
--- a/ui/app/components/transaction-status/index.scss
+++ /dev/null
@@ -1,33 +0,0 @@
-.transaction-status {
- height: 26px;
- width: 81px;
- border-radius: 4px;
- background-color: #f0f0f0;
- color: #5e6064;
- font-size: .625rem;
- text-transform: uppercase;
- display: flex;
- justify-content: center;
- align-items: center;
-
- @media screen and (max-width: $break-small) {
- height: 16px;
- width: 70px;
- font-size: .5rem;
- }
-
- &--confirmed {
- background-color: #eafad7;
- color: #609a1c;
- }
-
- &--approved, &--submitted {
- background-color: #FFF2DB;
- color: #CA810A;
- }
-
- &--failed {
- background: lighten($monzo, 56%);
- color: $monzo;
- }
-}