mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RelatedArticles
synced 2024-12-18 19:10:54 +00:00
71de06a682
Changes: - Removes redundant styles now inside Codex - With the new component, it's not possible to display 3 cards in a single line at a tablet resolution, so the media query responsible is bumped to apply only at the desktop threshold - Decisions are documented in ADR Bug: T286835 Change-Id: I493e8e601ccc31b3cf1f16c0b5a8975f12ef336c
15 lines
363 B
Plaintext
15 lines
363 B
Plaintext
@import 'mediawiki.skin.variables.less';
|
|
|
|
// 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.
|
|
.client-js {
|
|
.read-more-container {
|
|
min-height: 320px;
|
|
|
|
@media ( min-width: @min-width-breakpoint-desktop ) {
|
|
min-height: 163px;
|
|
}
|
|
}
|
|
}
|