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.
59 lines
914 B
59 lines
914 B
5 years ago
|
.connected-accounts-permissions {
|
||
4 years ago
|
@include H7;
|
||
|
|
||
5 years ago
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
color: $Grey-500;
|
||
|
|
||
|
strong {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
p + p {
|
||
|
padding-top: 8px;
|
||
|
}
|
||
|
|
||
|
&__header {
|
||
4 years ago
|
@include H6;
|
||
|
|
||
5 years ago
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
cursor: pointer;
|
||
4 years ago
|
color: #24292e;
|
||
5 years ago
|
|
||
|
button {
|
||
4 years ago
|
font-size: $font-size-paragraph;
|
||
5 years ago
|
background: none;
|
||
|
padding: 0;
|
||
|
margin-left: 8px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__list {
|
||
|
padding-top: 8px;
|
||
|
}
|
||
|
|
||
|
&__list-item {
|
||
|
display: flex;
|
||
4 years ago
|
}
|
||
5 years ago
|
|
||
4 years ago
|
& &__checkbox {
|
||
4 years ago
|
font-size: $font-size-h4;
|
||
4 years ago
|
margin: 0 8px 0 0;
|
||
5 years ago
|
}
|
||
|
|
||
|
&__list-container {
|
||
4 years ago
|
max-height: 0;
|
||
5 years ago
|
overflow: hidden;
|
||
|
height: auto;
|
||
4 years ago
|
transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
|
||
5 years ago
|
|
||
|
&--expanded {
|
||
|
// arbitrarily set hard coded value for effect to work
|
||
|
max-height: 100px;
|
||
|
}
|
||
|
}
|
||
|
}
|