From d272915ef6beffc74dc4f3e95e8c04b2e6744b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Sat, 18 Feb 2023 20:35:59 +0100 Subject: [PATCH] Fix make css --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 3e3c57e..169d22d 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,12 @@ HTMLFILES := $(shell find games/templates -type f) npm: npm install +css: common/input.css + npx tailwindcss -i ./common/input.css -o ./games/static/base.css + +css-dev: css + npx tailwindcss -i ./common/input.css -o ./games/static/base.css --watch + makemigrations: poetry run python manage.py makemigrations