Skip to content

Instantly share code, notes, and snippets.

@PluginRepublicSupport
Created January 31, 2023 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PluginRepublicSupport/78b25fc47dfd23498f8cdf46365562f3 to your computer and use it in GitHub Desktop.
Save PluginRepublicSupport/78b25fc47dfd23498f8cdf46365562f3 to your computer and use it in GitHub Desktop.
Two Columns Radio Options
/** Two columns for radio buttons on desktop view **/
@media only screen and (min-width: 600px) {
.pewc_group_7974_7987 ul.pewc-checkbox-group-wrapper{
display: grid;
grid-auto-columns: 200px 200px;
grid-template-rows: repeat(8, 30px);
gap: 10px;
grid-auto-flow: column;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment