From a53087f7a640bacf95c9e1a833c9e479a4c46a11 Mon Sep 17 00:00:00 2001 From: Julian Prieber <60265788+JulianPrieber@users.noreply.github.com> Date: Thu, 7 Apr 2022 15:56:02 +0200 Subject: [PATCH] Enabled custom CSS to be applied MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enabled custom CSS to be applied to buttons on the LittleLink page. CSS that is entered in the database will be applied directly to buttons. See: https://blog.littlelink-custom.com/upcoming-features/ --- resources/views/littlelink.blade.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/views/littlelink.blade.php b/resources/views/littlelink.blade.php index bf3b694..ad71011 100644 --- a/resources/views/littlelink.blade.php +++ b/resources/views/littlelink.blade.php @@ -195,8 +195,10 @@ function get_operating_system() { @if($link->button_id === 0)
- @elseif($link->name === "custom") + @elseif($link->name === "custom" and $link->custom_css === "") + @elseif($link->name === "custom" and $link->custom_css != "") + @elseif($link->name === "buy me a coffee") @elseif($link->name === "custom_website")