-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #763 from alphagov/fix-sass-error
Fix sass error
- Loading branch information
Showing
4 changed files
with
43 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
// The unbranded stylesheet is used if you need to create pages in your | ||
// prototype without the GOV.UK branding. | ||
// | ||
// See localhost:3000/docs/examples/blank-unbranded | ||
|
||
// Import colour palette and applied colours so that we can use | ||
// $govuk-body-background-colour in our overrides below. | ||
// | ||
// If you need to enable compatibility mode or the legacy palette, do that | ||
// *before* these imports. | ||
@import "node_modules/govuk-frontend/settings/colours-palette"; | ||
@import "node_modules/govuk-frontend/settings/colours-applied"; | ||
|
||
// Style links and paragraphs by default | ||
$govuk-global-styles: true; | ||
|
||
// Override the govuk-frontend font stack | ||
$govuk-font-family: "HelveticaNeue", "Helvetica Neue", "Arial", "Helvetica", sans-serif; | ||
|
||
// Remove canvas background colour, as is used with the GOV.UK Footer. | ||
// Override the canvas background colour, which is normally grey to blend with | ||
// the GOV.UK footer. | ||
$govuk-canvas-background-colour: $govuk-body-background-colour; | ||
|
||
@import "node_modules/govuk-frontend/all"; | ||
|
||
// If you need to create a page as part of your journey, but without GOV.UK branding | ||
// See localhost:3000/docs/examples/blank-unbranded |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters