2022-02-15 01:02:51 +01:00
|
|
|
.view-snap {
|
|
|
|
padding: 12px 18px;
|
|
|
|
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__subheader {
|
|
|
|
padding: 16px 4px;
|
2022-03-25 20:30:36 +01:00
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
2022-04-04 19:40:24 +02:00
|
|
|
margin-inline-end: 24px;
|
2022-02-15 01:02:51 +01:00
|
|
|
height: 72px;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
2022-04-04 19:40:24 +02:00
|
|
|
margin-inline-end: 0;
|
2022-02-15 01:02:51 +01:00
|
|
|
padding: 0 0 16px;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
gap: 8px;
|
|
|
|
height: max-content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-04 19:40:24 +02:00
|
|
|
&__install-details {
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
margin-inline-end: 24px;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
margin-inline-end: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__version {
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|
2022-02-15 01:02:51 +01:00
|
|
|
&__title {
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
padding-bottom: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__pill-toggle-container {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
width: 100%;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__pill-container {
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
padding-left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__toggle-container {
|
2022-02-23 21:16:41 +01:00
|
|
|
margin-left: auto;
|
|
|
|
|
2022-02-15 01:02:51 +01:00
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
padding-left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-23 21:16:41 +01:00
|
|
|
&__toggle-button {
|
|
|
|
margin-right: -12px;
|
|
|
|
}
|
|
|
|
|
2022-02-15 01:02:51 +01:00
|
|
|
&__content-container {
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__section {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-03-23 16:43:53 +01:00
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
2022-02-15 01:02:51 +01:00
|
|
|
padding-bottom: 16px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
height: initial;
|
|
|
|
padding: 5px 0 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connected-sites-list__content-row {
|
|
|
|
border-top: none;
|
2022-03-25 16:07:47 +01:00
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
2022-02-15 01:02:51 +01:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__permission-list {
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
|
|
.permission {
|
|
|
|
padding-top: 16px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__remove-button {
|
|
|
|
max-width: 175px;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|