2018-07-30 20:53:54 +02:00
|
|
|
.transaction-status {
|
|
|
|
height: 26px;
|
2018-12-09 21:48:06 +01:00
|
|
|
width: 84px;
|
2018-07-30 20:53:54 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
color: #5e6064;
|
|
|
|
font-size: .625rem;
|
|
|
|
text-transform: uppercase;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
2018-07-31 07:03:20 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2018-08-01 04:37:38 +02:00
|
|
|
height: 16px;
|
2018-12-09 21:48:06 +01:00
|
|
|
width: 72px;
|
2018-07-31 07:03:20 +02:00
|
|
|
font-size: .5rem;
|
|
|
|
}
|
|
|
|
|
2018-07-30 20:53:54 +02:00
|
|
|
&--confirmed {
|
|
|
|
background-color: #eafad7;
|
|
|
|
color: #609a1c;
|
2018-12-09 21:48:06 +01:00
|
|
|
|
|
|
|
.transaction-status__transaction-count {
|
|
|
|
border: 1px solid #609a1c;
|
|
|
|
}
|
2018-07-30 20:53:54 +02:00
|
|
|
}
|
|
|
|
|
2018-08-07 07:39:54 +02:00
|
|
|
&--approved, &--submitted {
|
2018-07-30 20:53:54 +02:00
|
|
|
background-color: #FFF2DB;
|
|
|
|
color: #CA810A;
|
2018-12-09 21:48:06 +01:00
|
|
|
|
|
|
|
.transaction-status__transaction-count {
|
|
|
|
border: 1px solid #CA810A;
|
|
|
|
}
|
2018-07-30 20:53:54 +02:00
|
|
|
}
|
2018-10-16 00:00:47 +02:00
|
|
|
|
|
|
|
&--failed {
|
|
|
|
background: lighten($monzo, 56%);
|
|
|
|
color: $monzo;
|
2018-12-09 21:48:06 +01:00
|
|
|
|
|
|
|
.transaction-status__transaction-count {
|
|
|
|
border: 1px solid $monzo;
|
|
|
|
}
|
2018-10-16 00:00:47 +02:00
|
|
|
}
|
|
|
|
}
|