Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion app/sass/_settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,21 @@ $govuk-link-active-colour: $color_nhsuk-dark-blue;
$govuk-border-width: 4px;
$govuk-border-width-wide: 8px;

$govuk-font-family: system-ui, sans-serif;
@font-face {
font-display: swap;
font-family: "Frutiger W01";
font-style: normal;
font-weight: 400;
src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix");
src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.svg#7def0e34-f28d-434f-b2ec-472bde847115") format("svg");
}
@font-face {
font-display: swap;
font-family: "Frutiger W01";
font-style: normal;
font-weight: 600;
src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix");
src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.svg#eae74276-dd78-47e4-9b27-dac81c3411ca") format("svg");
}

$govuk-font-family: Frutiger W01, arial, sans-serif;
20 changes: 20 additions & 0 deletions app/styles/application.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
---
eleventyExcludeFromCollections: true
---

@font-face {
font-display: swap;
font-family: "Frutiger W01";
font-style: normal;
font-weight: 400;
src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix");
src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.svg#7def0e34-f28d-434f-b2ec-472bde847115") format("svg");
}
@font-face {
font-display: swap;
font-family: "Frutiger W01";
font-style: normal;
font-weight: 600;
src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix");
src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.svg#eae74276-dd78-47e4-9b27-dac81c3411ca") format("svg");
}

$govuk-font-family: Frutiger W01, arial, sans-serif;

@import "govuk-frontend/dist/govuk/base";
@import "../_components/all";
@import "./overrides";
Expand Down