We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea0be8c commit 0232f0fCopy full SHA for 0232f0f
2 files changed
Dockerfile
@@ -9,7 +9,7 @@ COPY . .
9
10
RUN curl -sLo tailwindcss https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64 && \
11
chmod +x tailwindcss && \
12
- ./tailwindcss -i static/themes.css -o static/tailwind.css --content "templates/**/*.html" --minify
+ ./tailwindcss -i static/themes.css -o static/tailwind.css --minify
13
14
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-s -w" -o /ctp-auth-sso .
15
static/themes.css
@@ -1,4 +1,5 @@
1
@import "tailwindcss";
2
+@source "../templates/**/*.html";
3
4
/* Enable class-based dark mode (toggled by adding 'dark' class to <html>) */
5
@variant dark (&:where(.dark, .dark *));
0 commit comments