From a1a4b7f3d41c36ac7ef5e44d7e9d2f4e0f049a65 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Tue, 2 Apr 2019 09:59:18 +0100 Subject: [PATCH] Fix alignment of links in sticky footer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The delete link was inheriting 1px of extra top padding meant to align it when displayed alongside a button. In this case it’s not being displayed alongside a button, so doesn’t need the extra padding. --- app/assets/stylesheets/components/page-footer.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/components/page-footer.scss b/app/assets/stylesheets/components/page-footer.scss index e4073d47f..b389c14a5 100644 --- a/app/assets/stylesheets/components/page-footer.scss +++ b/app/assets/stylesheets/components/page-footer.scss @@ -42,7 +42,7 @@ &-delete-link-without-button { @include core-19; - padding-left: 0; + padding: 0; display: inline-block; }