XF 2.0 How to make my logo bigger in mobile view

Same question. I don't want a different logo and I know about the add-on, but is there a way to up the size in mobile, or, remove what looks like padding? Thanks!
 
Firstly where feasible use svg logos as they scale beautify to any size, simply css the height and width for your viewports or some themes already have mobile sizes such as UIX which I think op is using.
 
Try this in extra.less:

Code:
.p-nav-smallLogo
{
    display: none !important;
}
.p-header-logo
{
    max-width: none !important;
}
.has-js .p-header
{
    display: block;
}

That works perfectly thanks! Has a great look for those that want to display their logo prominently.
 
Top Bottom