Skip to content

Instantly share code, notes, and snippets.

@djadriano
Created January 19, 2015 21:33
Show Gist options
  • Select an option

  • Save djadriano/887687a9d3e4e21a7639 to your computer and use it in GitHub Desktop.

Select an option

Save djadriano/887687a9d3e4e21a7639 to your computer and use it in GitHub Desktop.
Form with Flexbox
.flex { display: flex; }
.v-center {
justify-content: center;
align-items: center;
}
.wrap { flex-wrap: wrap; }
.form-fields {
flex: 0 0 100%;
margin-bottom: 20px;
border-bottom: 1px solid #e9e9e9;
padding-bottom: 20px;
.label {
flex: 0 0 100%;
margin-bottom: 10px;
}
&.col-2 { flex: 0 0 50%; }
input { border: 1px solid #999; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment