aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/trumps/index.scss
blob: a6a6e4335b5358ea4b7464fe533b89c5b04edda3 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
  Trumps
 */


// Transitions

/* universal */
.app-primary .main-enter {
  position: absolute;
  width: 100%;
}

/* center position */
.app-primary.from-right .main-enter-active,
.app-primary.from-left .main-enter-active {
  overflow-x: hidden;
  transform: translateX(0px);
  transition: transform 300ms ease-in;
}

/* exited positions */
.app-primary.from-left .main-leave-active {
  transform: translateX(360px);
  transition: transform 300ms ease-in;
}
.app-primary.from-right .main-leave-active {
  transform: translateX(-360px);
  transition: transform 300ms ease-in;
}

.sidebar.from-left {
  transform: translateX(-320px);
  transition: transform 300ms ease-in;
}

/* loader transitions */
.loader-enter, .loader-leave-active {
  opacity: 0.0;
  transition: opacity 150 ease-in;
}
.loader-enter-active, .loader-leave {
  opacity: 1.0;
  transition: opacity 150 ease-in;
}

/* entering positions */
.app-primary.from-right .main-enter:not(.main-enter-active) {
  transform: translateX(360px);
}
.app-primary.from-left .main-enter:not(.main-enter-active) {
  transform: translateX(-360px);
}

i.fa.fa-question-circle.fa-lg.menu-icon {
  font-size: 18px;
}

/*
  Hacky breakpoint fix for account + tab sections
    Resolves issue from @frankiebee in
    https://github.com/MetaMask/metamask-extension/pull/1835
  Please remove this when integrating new designs
 */

// This is commented out, because it's not needed in NewUI.
// We will have a new css architecture w/ different breakpoints.

// @media screen and (min-width: 575px) and (max-width: 800px) {
//   .account-data-subsection {
//     flex: 0 0 auto !important; // reset flex
//     margin-left: 10px !important; // create additional horizontal space
//     margin-right: 10px !important;
//     width: 40%;
//   }

//   .tabSection {
//     flex: 0 0 auto !important;
//     margin-left: 10px !important;
//     margin-right: 10px !important;
//     min-width: 285px;
//     width: 49%;
//   }

//   .name-label {
//     width: 80%;
//   }
// }