43 lines
720 B
SCSS
43 lines
720 B
SCSS
|
|
@import "coinbase";
|
||
|
|
@import "glidera";
|
||
|
|
@import "amazon";
|
||
|
|
|
||
|
|
.integration-onboarding {
|
||
|
|
height: 100%;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
text-align: center;
|
||
|
|
&-logo {
|
||
|
|
display: inline-block;
|
||
|
|
img {
|
||
|
|
max-width: 170px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
&-heading {
|
||
|
|
font-size: 20px;
|
||
|
|
margin: 1rem;
|
||
|
|
}
|
||
|
|
&-description {
|
||
|
|
margin-top: 0;
|
||
|
|
margin-left: 2rem;
|
||
|
|
margin-right: 2rem;
|
||
|
|
margin-bottom: 100px;
|
||
|
|
opacity: .6;
|
||
|
|
max-width: 300px;
|
||
|
|
}
|
||
|
|
&-support-link {
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
&-cta, &-oauthform {
|
||
|
|
position: absolute;
|
||
|
|
bottom: 5vh;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
&-oauthform {
|
||
|
|
input {
|
||
|
|
border-bottom: 2px solid $light-gray;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|