aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/first-time-flow/seed-phrase/index.scss
blob: 88b28950cf922cb0c44b9c567bc73a3a659c79b9 (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
@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: 48px;
    }

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