From e6437bb896f66b1651fa393521bc0b4b2d8d9719 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Sun, 14 Feb 2021 18:54:37 +0100 Subject: [PATCH] Fix tags styles in forms These styles were broken in commit 2614de79c, since there we only considered scenarios where the `tags` element is a list. In these forms, however, the `tags` element is a regular
tag. --- app/assets/stylesheets/tags.scss | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/assets/stylesheets/tags.scss b/app/assets/stylesheets/tags.scss index b572da7a3..15d9b1422 100644 --- a/app/assets/stylesheets/tags.scss +++ b/app/assets/stylesheets/tags.scss @@ -1,6 +1,3 @@ -ul { - - &.tags { - @extend %tags; - } +.tags { + @extend %tags; }