From eae044e1f44abf5917ade258b04ec84a4ea5325b Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Wed, 8 Mar 2023 21:29:25 +0100 Subject: [PATCH] Move css to stylesheets folder --- README.md | 2 +- Trunk.toml | 2 +- index.css => stylesheets/index.css | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename index.css => stylesheets/index.css (100%) diff --git a/README.md b/README.md index 4aa975a..756c89a 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ There are a few things you have to adjust when adopting this template. ### Remove example code The code in [src/main.rs](src/main.rs) specific to the example is limited to only the `view` method. -There is, however, a fair bit of Sass in [index.scss](index.css) you can remove. +There is, however, a fair bit of Sass in [index.scss](stylesheets/index.css) you can remove. ### Update metadata diff --git a/Trunk.toml b/Trunk.toml index 7c7a3fe..8d20d6e 100644 --- a/Trunk.toml +++ b/Trunk.toml @@ -5,4 +5,4 @@ dist = "dist" [[hooks]] stage = "build" command = "sh" -command_arguments = ["-c", "npx tailwindcss -i index.css -o $TRUNK_STAGING_DIR/tailwind.css --minify"] \ No newline at end of file +command_arguments = ["-c", "npx tailwindcss -i stylesheets/index.css -o $TRUNK_STAGING_DIR/tailwind.css --minify"] \ No newline at end of file diff --git a/index.css b/stylesheets/index.css similarity index 100% rename from index.css rename to stylesheets/index.css