From 2bf56f69630223f95566fe440cda3dc03788f73f Mon Sep 17 00:00:00 2001 From: ChiaraBm Date: Sun, 1 Jun 2025 11:53:20 +0200 Subject: [PATCH] Updated to match plugin standard --- .../MoonlightServers.ApiServer.csproj | 2 +- MoonlightServers.Frontend/MoonlightServers.Frontend.csproj | 2 +- MoonlightServers.Frontend/Styles/exports.css | 1 + MoonlightServers.Frontend/Styles/preTailwind.css | 1 + MoonlightServers.Frontend/Styles/style.css | 6 +++++- 5 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 MoonlightServers.Frontend/Styles/exports.css create mode 100644 MoonlightServers.Frontend/Styles/preTailwind.css diff --git a/MoonlightServers.ApiServer/MoonlightServers.ApiServer.csproj b/MoonlightServers.ApiServer/MoonlightServers.ApiServer.csproj index f649112..c1227b1 100644 --- a/MoonlightServers.ApiServer/MoonlightServers.ApiServer.csproj +++ b/MoonlightServers.ApiServer/MoonlightServers.ApiServer.csproj @@ -33,7 +33,7 @@ - + true src diff --git a/MoonlightServers.Frontend/MoonlightServers.Frontend.csproj b/MoonlightServers.Frontend/MoonlightServers.Frontend.csproj index 6c297b0..1732c43 100644 --- a/MoonlightServers.Frontend/MoonlightServers.Frontend.csproj +++ b/MoonlightServers.Frontend/MoonlightServers.Frontend.csproj @@ -36,7 +36,7 @@ - + true src diff --git a/MoonlightServers.Frontend/Styles/exports.css b/MoonlightServers.Frontend/Styles/exports.css new file mode 100644 index 0000000..e81fa06 --- /dev/null +++ b/MoonlightServers.Frontend/Styles/exports.css @@ -0,0 +1 @@ +/* Custom styles here */ \ No newline at end of file diff --git a/MoonlightServers.Frontend/Styles/preTailwind.css b/MoonlightServers.Frontend/Styles/preTailwind.css new file mode 100644 index 0000000..44b66ba --- /dev/null +++ b/MoonlightServers.Frontend/Styles/preTailwind.css @@ -0,0 +1 @@ +/* Import custom fonts here */ \ No newline at end of file diff --git a/MoonlightServers.Frontend/Styles/style.css b/MoonlightServers.Frontend/Styles/style.css index 99318d7..14369c3 100644 --- a/MoonlightServers.Frontend/Styles/style.css +++ b/MoonlightServers.Frontend/Styles/style.css @@ -1,10 +1,14 @@ +@import "./preTailwind.css"; @import "moonlight/preTailwind.nuget.css"; @import "tailwindcss"; +@import "./exports.css"; @import "moonlight/nuget.css"; -@plugin "@tailwindcss/forms"; +@plugin "@tailwindcss/forms" { + strategy: "base"; +} @source "../**/*.razor"; @source "../**/*.cs";