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.
62 lines
935 B
62 lines
935 B
5 years ago
|
.unconnected-account-alert {
|
||
5 years ago
|
&__content {
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
|
||
5 years ago
|
&__footer {
|
||
|
flex-direction: column;
|
||
|
|
||
5 years ago
|
> :only-child {
|
||
5 years ago
|
margin: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
5 years ago
|
&__footer-row {
|
||
5 years ago
|
display: flex;
|
||
|
flex-direction: row;
|
||
5 years ago
|
}
|
||
5 years ago
|
|
||
4 years ago
|
& &__dismiss-button {
|
||
4 years ago
|
background: $primary-blue;
|
||
5 years ago
|
color: white;
|
||
|
height: 40px;
|
||
|
width: 100px;
|
||
|
border: 0;
|
||
5 years ago
|
}
|
||
|
|
||
|
&__error {
|
||
4 years ago
|
@include H6;
|
||
|
|
||
5 years ago
|
margin-bottom: 16px;
|
||
|
padding: 16px;
|
||
4 years ago
|
border: 1px solid $accent-red;
|
||
4 years ago
|
background: #f8eae8;
|
||
5 years ago
|
border-radius: 3px;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
&__checkbox-wrapper {
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
5 years ago
|
flex-direction: row;
|
||
5 years ago
|
align-items: center;
|
||
5 years ago
|
}
|
||
|
|
||
|
&__checkbox {
|
||
|
margin-right: 8px;
|
||
5 years ago
|
padding-top: 1px; // better alignment with rest of content
|
||
5 years ago
|
}
|
||
|
|
||
|
&__checkbox-label {
|
||
4 years ago
|
@include H7;
|
||
|
|
||
5 years ago
|
display: flex;
|
||
5 years ago
|
margin-top: auto;
|
||
|
margin-bottom: auto;
|
||
|
color: $Grey-500;
|
||
|
}
|
||
|
|
||
|
&__checkbox-label-tooltip {
|
||
|
margin-left: 8px;
|
||
|
}
|
||
5 years ago
|
}
|