Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecss
titleFont Size
input[type='text'],
input[type='number'],
textarea {
  font-size: 16px;
}

Mobile Only

There may be times when a form designer wants to display specific components exclusively to mobile users.  

Code Block
languagecss
titleMobile Only
@media only screen and (min-width:600px) {
	.hide-on-desktop {
		display: none;
		max-height: 0;
		overflow: hidden;
	}
}