diff options
author | Aylur <[email protected]> | 2024-09-07 13:00:42 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-07 13:00:42 +0000 |
commit | 13b6c88dd090bfc8997a2916f0c0cc44bdce2c74 (patch) | |
tree | 119e7b61b4b63a05ca96cb3f53ef01f44acdb9bb /docs/ags/theming.md | |
parent | 758550f320af6eca24674032b98679017db582a0 (diff) |
docs: touchups
* code block langs
* ags faq
* fix broken links
Diffstat (limited to 'docs/ags/theming.md')
-rw-r--r-- | docs/ags/theming.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ags/theming.md b/docs/ags/theming.md index af87994..ea83e35 100644 --- a/docs/ags/theming.md +++ b/docs/ags/theming.md @@ -115,7 +115,7 @@ sudo apk add dart-sass npm install -g sass # not packaged on Ubuntu ``` -```bash [openSUSE] +```sh [openSUSE] sudo zypper install dart-sass ``` @@ -128,7 +128,7 @@ Importing `scss` files will simply return transpiled css. ```ts [app.ts] import style from "./style.scss" -App.config({ +App.start({ css: style, main() {}, }) @@ -156,7 +156,7 @@ writeFile(tmpscss, ` exec(`sass ${tmpscss} ${target}`) -App.config({ +App.start({ css: target, }) |