Make Datepicker smaller on mobile view

Add this code to the Custom CSS field on the Appearance tab of your Formbuilder widget’s settings:

@media(max-width: 500px){
  .global-styles, [class^="DatepickerLayout-sc"] {
  transform: scale(0.85);
  margin-top:-65px !important;
}
1 Like