Align footer text left on desktop

This commit is contained in:
Jacob Müller 2016-09-23 08:58:06 +02:00
parent 0bae5fca69
commit c8b2c39409
1 changed files with 5 additions and 1 deletions

View File

@ -77,9 +77,13 @@
} }
footer { footer {
text-align: center; text-align: left;
padding: ($unit * 2) ($unit * 6); padding: ($unit * 2) ($unit * 6);
@include respond-to('mobile') {
text-align: center;
}
a { a {
color: $snow; color: $snow;
} }