Skip to content

Commit

Permalink
style: fix stylelint formatting in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrotherham committed Jan 31, 2025
1 parent 8eb6450 commit b8ffff1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/production/installing-with-npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,21 +110,21 @@ To use different asset paths, set `$govuk-assets-path`, `$govuk-images-path` and

Example 1:

```SCSS
```scss
// Include images from /application/assets/images and fonts from /application/assets/fonts
$moj-assets-path: /application/assets;
$moj-assets-path: "/application/assets/";

@import @ministryofjustice/frontend/moj/all;
@import "@ministryofjustice/frontend/moj/all";
```

Example 2:

```SCSS
```scss
// Include images from /images/@ministryofjustice/frontend and fonts from /fonts
$moj-images-path: /images/@ministryofjustice/frontend/moj/;
$moj-fonts-path: /fonts/;
$moj-images-path: "/images/@ministryofjustice/frontend/moj/";
$moj-fonts-path: "/fonts/";

@import @ministryofjustice/frontend/moj/all;
@import "@ministryofjustice/frontend/moj/all";
```

## Importing JavaScript
Expand Down

0 comments on commit b8ffff1

Please sign in to comment.