aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-status/index.scss
blob: dd9bf58777a85f0c2b3a65c948498fb2b7ebb827 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.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;

  &--confirmed {
    background-color: #eafad7;
    color: #609a1c;
  }

  &--approved {
    background-color: #FFF2DB;
    color: #CA810A;
  }
}