From 62ec6fa09979ef9c844023ba5b3a7e6a816a7bd6 Mon Sep 17 00:00:00 2001 From: Tai Groot Date: Sun, 18 Oct 2020 22:42:43 -0700 Subject: docs: Updates code-fork to code-branch --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 0e5d002..af642c8 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -86,7 +86,7 @@ links: # Leave only a "items" key if not using group (group name, icon & tagstyle are optional, section separation will not be displayed). services: - name: "Application" - icon: "fa fa-code-fork" + icon: "fas fa-code-branch" items: - name: "Awesome app" logo: "assets/tools/sample.png" -- cgit v1.2.3 From 488e4bbe7f511b3c27a665336dad4b7285c77473 Mon Sep 17 00:00:00 2001 From: Tai Groot Date: Sun, 18 Oct 2020 22:43:23 -0700 Subject: docs: Fixes spelling error in filename --- docs/developement.md | 29 ----------------------------- docs/development.md | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 29 deletions(-) delete mode 100644 docs/developement.md create mode 100644 docs/development.md diff --git a/docs/developement.md b/docs/developement.md deleted file mode 100644 index 6ea1cba..0000000 --- a/docs/developement.md +++ /dev/null @@ -1,29 +0,0 @@ -## Developement - -```sh -# Using yarn (recommended) -yarn install -yarn serve - -# **OR** Using npm -npm install -npm run serve -``` - -### Themes - -Themes are meant to be simple customization (written in [scss](https://sass-lang.com/documentation/syntax)). -To addd a new theme, just add a file in the theme directory, and put all style in the `body #app.theme-` scope. Then import it in the main style file. - -```scss -// `src/assets/themes/my-awesome-theme.scss` -body #app.theme-my-awesome-theme. { ... } -``` - -```scss -// `src/assets/app.scss` -// Themes import -@import "./themes/sui.scss"; -... -@import "./themes/my-awesome-theme.scss"; -``` diff --git a/docs/development.md b/docs/development.md new file mode 100644 index 0000000..6ea1cba --- /dev/null +++ b/docs/development.md @@ -0,0 +1,29 @@ +## Developement + +```sh +# Using yarn (recommended) +yarn install +yarn serve + +# **OR** Using npm +npm install +npm run serve +``` + +### Themes + +Themes are meant to be simple customization (written in [scss](https://sass-lang.com/documentation/syntax)). +To addd a new theme, just add a file in the theme directory, and put all style in the `body #app.theme-` scope. Then import it in the main style file. + +```scss +// `src/assets/themes/my-awesome-theme.scss` +body #app.theme-my-awesome-theme. { ... } +``` + +```scss +// `src/assets/app.scss` +// Themes import +@import "./themes/sui.scss"; +... +@import "./themes/my-awesome-theme.scss"; +``` -- cgit v1.2.3