File size: 582 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
// Constrain JITMs to match layout column
.layout__content > .upsell-nudge {
margin-left: auto;
margin-right: auto;
max-width: 1040px;
}
// Customization for the /themes page.
.is-section-themes .layout__content > .upsell-nudge {
max-width: 100%;
margin: 40px 0 0 0;
}
// Customization for the /stats page.
.is-section-stats .layout__content > .upsell-nudge {
max-width: 1224px;
margin: -25px max(calc(50% - 612px), 32px) 20px;
@media (max-width: 660px) {
margin: -15px 16px 15px;
}
@media (min-width: 659px) and (max-width: 782px) {
margin: -10px 32px 15px;
}
}
|