mediawiki-skins-MinervaNeue/skinStyles/mobile.special.pagefeed.styles.less
yash9265 b14d4e04af Add max-width limit to empty watchlist page
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
2021-01-21 19:49:32 +00:00

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;
}
}