From 74bed15f7fbbd43c92e123f913f41562fb28fe3b Mon Sep 17 00:00:00 2001 From: Matt-Yorkley <9029026+Matt-Yorkley@users.noreply.github.com> Date: Mon, 14 Jun 2021 09:25:36 +0100 Subject: [PATCH] Fix crazy issue with @extend on icons This one line of code was crashing asset compilation... :/ --- app/webpacker/css/admin/shared/tables.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/webpacker/css/admin/shared/tables.scss b/app/webpacker/css/admin/shared/tables.scss index 612e85f06d..e1f5abe35f 100644 --- a/app/webpacker/css/admin/shared/tables.scss +++ b/app/webpacker/css/admin/shared/tables.scss @@ -104,8 +104,11 @@ table { } .handle { - @extend [class^="icon-"], :before; @extend .icon-reorder; + font-family: FontAwesome; + text-decoration: inherit; + display: inline-block; + speak: none; cursor: move; }