From f3eddd4b05836d4a67a667712b114f26fc0cfd07 Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Fri, 13 Jan 2023 09:58:56 +0100 Subject: [PATCH] lille-metropole-2022: fix custom links icons display (#73363) --- static/lille-metropole-2022/_custom.scss | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/static/lille-metropole-2022/_custom.scss b/static/lille-metropole-2022/_custom.scss index 3f17e924..3427896a 100644 --- a/static/lille-metropole-2022/_custom.scss +++ b/static/lille-metropole-2022/_custom.scss @@ -21,11 +21,18 @@ div#page { } %cell-links-list { - > li > a { - color: $font-color; - text-transform: uppercase; - &:hover { - color: $primary-color; + > li { + > a { + color: $font-color; + text-transform: uppercase; + &:hover { + color: $primary-color; + } + } + &.required-authentication, &.is-redirection, &.external-link { + > a { + display: block; + } } } }