Hi,
Is there a way to change the font size for context menu items? The items appear to be preset at 13px which are a bit small on mobile devices.
There is a font definition for the menu items in the themes under fonts, you can change it like this in a theme mixin
{
 "fonts": {
   "menu": {
     "size": 23,
     "family": [ "arial", "verdana", "sans-serif" ]
   }
  }
}
Or you can set AllowHtml to true and add any html to the text, like <big>Item 1</big> or <span style…>Items</span>.
There is a font definition for the menu items in the themes under fonts, you can change it like this in a theme mixin
{
 "fonts": {
   "menu": {
     "size": 23,
     "family": [ "arial", "verdana", "sans-serif" ]
   }
  }
}
Or you can set AllowHtml to true and add any html to the text, like <big>Item 1</big> or <span style…>Items</span>.
Please login first to submit.
