aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/first-time-flow/seed-phrase/index.scss
blob: 24da45ded6e0f1e157160ac6f898dc15569994fb (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
@import 'confirm-seed-phrase/index';

@import 'reveal-seed-phrase/index';

.seed-phrase {

  &__sections {
    display: flex;

    @media screen and (min-width: $break-large) {
      flex-direction: row;
    }

    @media screen and (max-width: $break-small) {
      flex-direction: column;
    }
  }

  &__main {
    flex: 3;
    min-width: 0;
  }

  &__side {
    flex: 2;
    min-width: 0;

    @media screen and (min-width: $break-large) {
      margin-left: 81px;
    }

    @media screen and (max-width: $break-small) {
      margin-top: 24px;
    }

    .first-time-flow__text-block {
      color: #5A5A5A;
    }
  }
}