August 2016
Intermediate to advanced
318 pages
6h 32m
English
Next, we need to lay out our columns. Create a file called _subfooter.scss in the scss/components folder. Inside that place:
.subfooter {
padding: $spacing ($spacing / 2);
ul {
padding: 0;
margin: 0;
list-style: none;
}
&-widget {
@include span(12);
}
}
@include bp(medium) {
.subfooter {
&-widget {
@include span(4);
&:last-child {
@include span(4 last);
}
}
}
}
This will give use full width stacked columns on all screens below 768px. The subfooter should now look like:

Our subfooter is already looking fairly good. Next, lets apply some of our media mixins to our subfooter-widget-products:
.subfooter { padding: $spacing ($spacing / 2); ul ...Read now
Unlock full access