Last active
July 31, 2019 14:55
-
-
Save robertcedwards/b89c3b0972adda676cbca815030b00f4 to your computer and use it in GitHub Desktop.
Fix for column layout on online retailer and map issue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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