XF 2.2 Lightning Bolt icon show on desktop as well as mobile

Solution
Just add this to extra.less, for the icon + the text to show:

Code:
.p-nav .p-navgroup-link--whatsnew {
    display: block;
}

Or icon only:

Code:
.p-nav .p-navgroup-link--whatsnew {
    display: block;
    .p-navgroup-linkText { display: none; }
}
Top Bottom