You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The menu was designed primarily using a 1080p monitor and works well for that resolution. At 1440p, elements can start to feel a bit small. At 4k, items are absolutely tiny and need to be scaled up for the user.
Solutions:
Apply the non-standard zoom CSS property available in CEF. (This is a non-standard feature and can be subject to change in the future, would prefer to not use if possible. Unfortunately, this will also probably be the easiest to implement seamlessly with minimum changes.)
Adjust the breakpoint system and to be more suited towards desktop development and not mobile responsiveness. (Adjusting breakpoints like this often leads to small CSS issues that can become aggravating to fix).
Note: Often when developing for regular browsers, users with 4k screen will enable a browser setting to enable auto scaling. Since this is CEF, there aren't many good solutions for enabling these scaling options programmatically
The text was updated successfully, but these errors were encountered:
Although zoom and transform property works in general, popover elements are not handled properly. This is fixed in #439 as it utilizes Popper v2. When that is merged, this should be fairly easy to implement well.
The menu was designed primarily using a 1080p monitor and works well for that resolution. At 1440p, elements can start to feel a bit small. At 4k, items are absolutely tiny and need to be scaled up for the user.
Solutions:
zoom
CSS property available in CEF. (This is a non-standard feature and can be subject to change in the future, would prefer to not use if possible. Unfortunately, this will also probably be the easiest to implement seamlessly with minimum changes.)Note: Often when developing for regular browsers, users with 4k screen will enable a browser setting to enable auto scaling. Since this is CEF, there aren't many good solutions for enabling these scaling options programmatically
The text was updated successfully, but these errors were encountered: