Russ
Well-known member
- Affected version
- 2.2.4
In input_extended.less
This is causing some issues when the padding is set even a little larger than the default XF values.
This is removing the side padding for mobile, lines up much nicer.
Maybe a simple media query on that to reduce/remove the padding?
Code:
.inputTypes
{
.m-listPlain();
display: flex;
flex-wrap: wrap;
padding: 0 (2 * @xf-paddingLarge);
border-bottom: solid 1px @__borderColor;
color: @__textColor;
font-size: @xf-fontSizeSmall;
}
This is causing some issues when the padding is set even a little larger than the default XF values.
This is removing the side padding for mobile, lines up much nicer.
Maybe a simple media query on that to reduce/remove the padding?