Just starting out with SASS/Bourbon/Neat.
I've got 3 items, all taking up 3 columns. I want to shift 2 of them to the right, and leave 1 to the left. This is the sass/SCSS I'm using:
#mod-header{
background-color: $primaryColor;
color: $primaryTextColor;
header{
@include outer-container();
.social{
@include shift(9);
@include span-columns(3);
}
.contactDetails{
@include shift(9);
@include span-columns(3);
}
.dealerLogo{
@include span-columns(3);
}
}
}
But this is the result I'm getting:
https://jsfiddle.net/2qfm6dnd/
IE. It's knocking .social and .contactDetails down by the height of .dealerLogo. How can I stop this happening please?
I know the answer could be very simple.