aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/subscription.scss
blob: 63183f085ce80f0801a16d99049c3e19a80520d9 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.subscription {
  .subscription__premium-features {
    margin: 10px 0;

    li {
      height: 30px;
      align-items: center;
      display: flex;

      &:before {
        content: "👍";
        margin-right: 10px;
      }

      .badge {
        margin-left: 10px;
      }
    }
  }

  .subscription__premium-info {
    margin: 15px 0 25px;
  }
}

.paymentTiers {
  .franz-form__radio-wrapper {
    flex-flow: wrap;

    .franz-form__radio {
      width: 32%;
      flex: initial;
      margin-right: 2%;

      &:nth-child(3) {
        margin-right: 0;
      }

      &:last-of-type {
        margin-right: 0;
        margin-top: 2%;
        width: 100%;
      }
    }
  }
}

.settings {
  .paymentTiers {
    .franz-form__radio-wrapper {
      .franz-form__radio {
        width: 49%;

        &:nth-child(2) {
          margin-right: 0;
        }

        &:last-of-type {
          width: 100%;
        }
      }
    }
  }
}

.mining-details {
  margin-bottom: 15px;

  button {
    color: $theme-brand-primary;
  }
}