public function quoteForm() {
$this->setPopupMaxWidth('1440');
$this->setPopupPadding('20');
+ $this->setVerticalMargin('20');
return $this->view->quoteForm('requestQuotePopup'); // Different ID for popup form so it doesn't conflict with contact page form
}
z-index: 2;
transition: all 140ms ease-out;
+ // Since iOS zooms whole page for inputs that are using a smaller font size, we need to set
+ // the font size to 16px to avoid this. This changes the size of the inputs so the below rule
+ // is needed to make sure the FancySelect matches the height.
+ .ios & {
+ @media @m768 {
+ font-size: 16px; // iOS will zoom whole page if font size is smaller than 16px
+ }
+ }
+
&.selected {
color: #000;
}