| 1 |
.ep-sync-panel { |
| 2 |
margin-bottom: 2rem; |
| 3 |
max-width: 1200px; |
| 4 |
} |
| 5 |
|
| 6 |
.ep-sync-panel__body { |
| 7 |
display: grid; |
| 8 |
grid-column-gap: 2rem; |
| 9 |
grid-row-gap: 1rem; |
| 10 |
grid-template-columns: auto 16rem; |
| 11 |
|
| 12 |
&.is-opened { |
| 13 |
padding: 2rem 2rem 1rem 2rem; |
| 14 |
} |
| 15 |
|
| 16 |
& p, |
| 17 |
& .components-toggle-control, |
| 18 |
& .components-tab-panel__tab-content { |
| 19 |
margin-bottom: 1rem; |
| 20 |
margin-top: 0; |
| 21 |
} |
| 22 |
|
| 23 |
@media (max-width: 960px) { |
| 24 |
grid-template-columns: 100%; |
| 25 |
} |
| 26 |
} |
| 27 |
|
| 28 |
.ep-sync-panel__row { |
| 29 |
grid-column: 1 / -1; |
| 30 |
} |
| 31 |
|
| 32 |
.ep-sync-panel__introduction { |
| 33 |
font-size: 18px; |
| 34 |
} |
| 35 |
|