Remove max-width limitation on inputs for mobile skin

All elements should be able to use the full window width.

Bug: T311109
Change-Id: I1e3ca6718a44cbdaa74d0c5bc94d0f475cd5e6bd
This commit is contained in:
Adam Wight 2022-07-05 14:02:43 +02:00
parent fd002928e2
commit b275bb33d4

View file

@ -2,5 +2,11 @@
&-stackLayout {
/* We don't want anything to collapse left/right, so shouldn't use margin */
padding: 0 20px;
/* Allow inputs to use the full width */
.oo-ui-textInputWidget,
.ve-ui-mwParameterPage-inlineDescription {
max-width: none;
}
}
}