diff options
author | kotontrion <[email protected]> | 2024-10-10 11:28:11 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-10-10 11:28:11 +0200 |
commit | 08f10ce3968166c55f5f2e3009415e4899e9a73b (patch) | |
tree | c6f914debe8f86e8ec7275f86a4181b20cf5f45a /docs/guide/ags/theming.md | |
parent | 10447f5abcb28f3df1544f1732f82d538130b3c9 (diff) | |
parent | 075c7e34aa0fbdc07c86965ab5a2ae79b92d3fd3 (diff) |
Merge branch 'main' into feat/cava
Diffstat (limited to 'docs/guide/ags/theming.md')
-rw-r--r-- | docs/guide/ags/theming.md | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/docs/guide/ags/theming.md b/docs/guide/ags/theming.md index ea83e35..cb0ebff 100644 --- a/docs/guide/ags/theming.md +++ b/docs/guide/ags/theming.md @@ -99,26 +99,18 @@ workaround by using preprocessors like [SCSS](https://sass-lang.com/). :::code-group -```sh [Arch] +```sh [<i class="devicon-archlinux-plain"></i> Arch] sudo pacman -Syu dart-sass ``` -```sh [Fedora] +```sh [<i class="devicon-fedora-plain"></i> Fedora] npm install -g sass # not packaged on Fedora ``` -```sh [Alpine] -sudo apk add dart-sass -``` - -```sh [Ubuntu] +```sh [<i class="devicon-ubuntu-plain"></i> Ubuntu] npm install -g sass # not packaged on Ubuntu ``` -```sh [openSUSE] -sudo zypper install dart-sass -``` - ::: Importing `scss` files will simply return transpiled css. |