Skip to content

Instantly share code, notes, and snippets.

@robertcedwards
Last active July 31, 2019 14:55
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 robertcedwards/b89c3b0972adda676cbca815030b00f4 to your computer and use it in GitHub Desktop.
Save robertcedwards/b89c3b0972adda676cbca815030b00f4 to your computer and use it in GitHub Desktop.
Fix for column layout on online retailer and map issue
.col-sm-4 {
@include span-columns(3);
@include media($device) {
@include span-columns(6);
text-align: center;
}
}
.map {
@include span-columns(8);
@include omega();
position: relative;
min-height: 550px;
margin-top: -50px;
@include media($device) {
display: none;
}
@include media($ipadpro) {
//margin-top: -200px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment