aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/confirm-page-container/confirm-detail-row/index.scss
blob: 580a41fde61681d4629eba0b2b9223ba6bf1da68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.confirm-detail-row {
  padding: 14px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  &__label {
    font-size: .75rem;
    font-weight: 500;
    color: $scorpion;
    text-transform: uppercase;
  }

  &__details {
    flex: 1;
    text-align: end;
    min-width: 0;
  }

  &__primary {
    font-size: 1.5rem;
    justify-content: flex-end;
  }

  &__secondary {
    color: $oslo-gray;
    justify-content: flex-end;
  }

  &__header-text {
    font-size: .75rem;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: $scorpion;

    &--edit {
      color: $curious-blue;
      cursor: pointer;
    }

    &--total {
      font-size: .625rem;
    }
  }
}