2023-04-18 18:19:46 +00:00
|
|
|
@import 'mediawiki.skin.variables.less';
|
2021-11-04 19:27:36 +00:00
|
|
|
|
|
|
|
// Reserve space for the related articles cards.
|
|
|
|
// https://phabricator.wikimedia.org/T223844
|
|
|
|
// Note this is optimized for 3 related articles which is the majority of cases.
|
|
|
|
// There will be a jump when:
|
|
|
|
// - a page has no related articles,
|
|
|
|
// - a page has more than 3 related articles
|
|
|
|
// and there will be visible whitespace on mobile for a page with less than 3.
|
|
|
|
.client-js {
|
|
|
|
.read-more-container {
|
|
|
|
// Assumes 3 cards at 78px.
|
|
|
|
min-height: 274px;
|
|
|
|
|
2023-10-23 06:34:36 +00:00
|
|
|
@media ( min-width: @min-width-breakpoint-desktop ) {
|
2021-11-04 19:27:36 +00:00
|
|
|
min-height: 124px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|