From 052a67284d52a6786fdfd112a1ea8b18e5a53e58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Fri, 29 Jul 2022 15:34:09 +0200 Subject: [PATCH] vendee: fix link to category cell padding & icon (#67817) --- static/vendee-cd85/_custom.scss | 35 +++++++++++++++++++++++---------- 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/static/vendee-cd85/_custom.scss b/static/vendee-cd85/_custom.scss index 4ee1bfd5..1f54974e 100644 --- a/static/vendee-cd85/_custom.scss +++ b/static/vendee-cd85/_custom.scss @@ -140,23 +140,25 @@ div#page { box-shadow: 3px 3px 10px $gray; } +%arrow-icon { + &::before { + color: $link-hover-color; + content: "\f0a9"; + display: inline-block; + font-family: FontAwesome; + padding-right: 0.7rem; + text-decoration: none; + } +} + %cell-links-list { & > li > a { + @extend %arrow-icon; display: inline-block; &:hover { text-decoration: $link-hover-decoration; } - - &::before { - color: $link-hover-color; - content: "\f0a9"; - display: inline-block; - font-family: FontAwesome; - padding-right: 0.7rem; - text-decoration: none; - } - } } @@ -166,6 +168,19 @@ div.text-cell { } } +div.wcsformcell { + padding: 1rem; + div { + > a:first-child { + @extend %arrow-icon; + } + + div.description { + margin-top: 1rem; + } + } +} + %button { box-shadow: none; font-size: 0.9rem;