LogicMachine Forum
increase pin code size - Printable Version

+- LogicMachine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visu (https://forum.logicmachine.net/forumdisplay.php?fid=24)
+--- Thread: increase pin code size (/showthread.php?tid=6365)



increase pin code size - davidchispas - 25.03.2026

Hi, is it possible to increase the size of the PIN code window? It looks fine and the size is correct in the mobile app, but I have an Android screen with a resolution of 1280x800 where it looks very small. Would it be possible to increase the size without affecting the other screen?


RE: increase pin code size - admin - 25.03.2026

Add to Custom CSS:
Code:
@media (min-width: 1200px) {
  #pincode {
    transform: scale(150%);
  }
}