From 8a7d083fb2169d5591ef1fb900701f02d190c193 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, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8296fc1..8d45097 100644 --- a/Makefile +++ b/Makefile @@ -7,11 +7,11 @@ HTMLFILES := $(shell find games/templates -type f) npm: npm install -css: input.css - npx tailwindcss -i ./input.css -o ./games/static/base.css +css: common/input.css + npx tailwindcss -i ./common/input.css -o ./games/static/base.css css-dev: css - npx tailwindcss -i ./input.css -o ./games/static/base.css --watch + npx tailwindcss -i ./common/input.css -o ./games/static/base.css --watch makemigrations: poetry run python manage.py makemigrations