You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.0 KiB
60 lines
1.0 KiB
.permissions-connect-choose-account {
|
|
&__title {
|
|
@include H4;
|
|
}
|
|
|
|
&__cancel {
|
|
color: var(--Red-400);
|
|
}
|
|
|
|
&__content {
|
|
display: flex;
|
|
overflow-y: auto;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
&__footer-container {
|
|
width: 100%;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
flex-direction: column-reverse;
|
|
justify-content: space-between;
|
|
padding-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
&__bottom-buttons {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
padding-top: 16px;
|
|
padding-bottom: 16px;
|
|
margin-top: 12px;
|
|
border-top: 1px solid #d6d9dc;
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
border-top: none;
|
|
}
|
|
|
|
button {
|
|
width: 124px;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: white;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.btn-primary {
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
}
|
|
|