Skip to content

Commit

Permalink
docs: update style include syntax
Browse files Browse the repository at this point in the history
- node_modules no longer needs to be included
  • Loading branch information
jwelmac committed Aug 6, 2023
1 parent 5c49560 commit 8cdd372
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class Module { }
To allow customization, `@achimha/angular-archwizard` bundles CSS styles separately. If you are using Angular CLI, import them into your `styles.css`...

```css
@import '../node_modules/@achimha/angular-archwizard/styles/archwizard.css';
@import '@achimha/angular-archwizard/styles/archwizard.css';
```

...or include them into `angular.json`:
Expand All @@ -78,14 +78,14 @@ To allow customization, `@achimha/angular-archwizard` bundles CSS styles separat
{
// ...
"styles": [
"node_modules/@achimha/angular-archwizard/styles/archwizard.css",
"@achimha/angular-archwizard/styles/archwizard.css",
"src/styles.css"
]
// ...
}
```

If you are using SCSS, you can include the styles in the form of a `.scss` file: `node_modules/@achimha/angular-archwizard/styles/archwizard.scss`.
If you are using SCSS, you can include the styles in the form of a `.scss` file: `@achimha/angular-archwizard/styles/archwizard.scss`.
This way you can easily customize wizard's appearance by tweaking SCSS variables as described in [Styles Customization](#styles-customization).

## How to use the wizard
Expand Down

0 comments on commit 8cdd372

Please sign in to comment.