From 22a4e86c08f14d34c99fdad02a57a827a4ce06d6 Mon Sep 17 00:00:00 2001 From: Steven Giesel Date: Wed, 26 Jun 2024 11:00:49 +0200 Subject: [PATCH] Fix missing dash --- .../Features/Home/Components/IntroductionCard.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LinkDotNet.Blog.Web/Features/Home/Components/IntroductionCard.razor b/src/LinkDotNet.Blog.Web/Features/Home/Components/IntroductionCard.razor index 3f385cae..2ae41ce5 100644 --- a/src/LinkDotNet.Blog.Web/Features/Home/Components/IntroductionCard.razor +++ b/src/LinkDotNet.Blog.Web/Features/Home/Components/IntroductionCard.razor @@ -18,6 +18,6 @@ : string.Empty; private string IntroductionStyle => !string.IsNullOrEmpty(Introduction.Value.BackgroundUrl) - ? $"-profile-background: url({Introduction.Value.BackgroundUrl})" + ? $"--profile-background: url({Introduction.Value.BackgroundUrl})" : string.Empty; }