Skip to content

Instantly share code, notes, and snippets.

@emirotin
Created March 9, 2016 11:16
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 emirotin/e872d90ee0c8a404ffd4 to your computer and use it in GitHub Desktop.
Save emirotin/e872d90ee0c8a404ffd4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
$unit: 1rem;
$phoneWindowWidth: 768;
.formFooter {
padding-top: 1 * $unit 0;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
@media only screen and (max-width: $phoneWindowWidth * 1px) {
flex-direction: column-reverse;
align-items: flex-start;
}
}
.formFooter {
padding-top: 1rem 0;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
@media only screen and (max-width: 768px) {
.formFooter {
flex-direction: column-reverse;
align-items: flex-start;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment