mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-14 18:05:01 +00:00
b14d4e04af
On the Watchlist, when there are no results, the page uses .info and .empty-page classes. This results in text running without max-length. Add max-width rule to contain it. Bug: T222872 Change-Id: I768f800a49e756da1ad2c123c842c37d18fa3310
11 lines
268 B
Plaintext
11 lines
268 B
Plaintext
@import 'mediawiki.ui/variables';
|
|
@import '../minerva.less/minerva.variables.less';
|
|
|
|
@media screen and ( min-width: @width-breakpoint-tablet ) {
|
|
.empty-page {
|
|
max-width: @contentMaxWidthTablet + 2 * @iconGutterWidth;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|