From a44280ecf41a5e411d033a672fbbfafe8b4d81d4 Mon Sep 17 00:00:00 2001 From: linkfrg Date: Mon, 29 Jul 2024 00:26:27 +0500 Subject: [PATCH] specify dart-sass as dependency in IgnisApp.apply_css() docstring --- ignis/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ignis/app.py b/ignis/app.py index 98f94db3..4f76848f 100644 --- a/ignis/app.py +++ b/ignis/app.py @@ -111,7 +111,8 @@ def apply_css(self, style_path: str) -> None: """ Apply CSS/SCSS/SASS style from a path. If ``style_path`` has a ``.sass`` or ``.scss`` extension, it will be automatically compiled. - + Requires ``dart-sass`` for SASS/SCSS compilation. + Args: style_path (``str``): Path to the .css/.scss/.sass file. """