From c8b2c394098f9fe422ded1b4f28cfe7c30df418e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20Mu=CC=88ller?= Date: Fri, 23 Sep 2016 08:58:06 +0200 Subject: [PATCH] Align footer text left on desktop --- public/resources/css/module/_footer.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/resources/css/module/_footer.scss b/public/resources/css/module/_footer.scss index 5127bedcf2..5bca0a6907 100644 --- a/public/resources/css/module/_footer.scss +++ b/public/resources/css/module/_footer.scss @@ -77,9 +77,13 @@ } footer { - text-align: center; + text-align: left; padding: ($unit * 2) ($unit * 6); + @include respond-to('mobile') { + text-align: center; + } + a { color: $snow; }