From 8fb3e06bbea1e8a6597f3584631db6dfe78d6b08 Mon Sep 17 00:00:00 2001 From: exu Date: Wed, 18 Sep 2024 17:10:26 +0200 Subject: [PATCH] Add how-to for scss compilation --- themes/learn2-dark/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/themes/learn2-dark/README.md b/themes/learn2-dark/README.md index d40da8b..b85843b 100644 --- a/themes/learn2-dark/README.md +++ b/themes/learn2-dark/README.md @@ -8,3 +8,13 @@ A custom dark theme based on Learn2 ## SCSS Watching To compile scss into css, install the package `ruby-sass` + +```sh +scss --watch scss:css-compiled +``` + +For one-time executions: + +```sh +scss --update scss:css-compiled +```