Change size of pop up

Hello! Is there a way to make the pop-up take up more space on larger screens? Maybe use a percentage of the screen’s width (outside of mobile)?

Hi there, @Lily_Gamble1 :waving_hand:

This CSS code will do the trick:

@media (min-width: 1024px) {
  .global-styles,
  [class*="Popup__PopupContent"] {
    transform: scale(1.25);
  }

  .global-styles,
  [class*="Popup__PopupCloseInsideInner-sc"] {
    transform: scale(0.75);
  }
}

Please try it out and let me know how it worked for you :slightly_smiling_face:

That worked perfectly. Thank you!

Great, you’re welcome :wink: