From 76fcadd29d1210904864944beb0d495c55229120 Mon Sep 17 00:00:00 2001 From: Alexander Bigga Date: Sun, 3 Dec 2023 22:48:06 +0100 Subject: [PATCH] Remove search loop if using block search widget with text button --- sass/_widgets.scss | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/sass/_widgets.scss b/sass/_widgets.scss index cb02c8eb..dd504140 100755 --- a/sass/_widgets.scss +++ b/sass/_widgets.scss @@ -143,3 +143,33 @@ } } } + +.widget { + + &_search { + + .wp-block-search__button-outside { + + label { + + &.wp-block-search__label { + + @include themed() { + font-family: t("standardFont"); + } + + font-weight: 700; + font-size: 1.3rem; + color: $white; + letter-spacing: 0.3px; + + } + + &::after { + content: ""; + } + } + } + } + +}