try overriding default govuk-frontend font weight

This commit is contained in:
Kenneth Kehl
2024-09-23 07:50:52 -07:00
parent b6e0249adb
commit 5c3b5790ae
2 changed files with 5 additions and 1 deletions

View File

@@ -34,6 +34,11 @@ $path: '/static/images/';
// Dependencies from GOV.UK Frontend, packaged to be specific to this application
@import './govuk-frontend/all';
// Custom overrides
.govuk-link {
font-weight: bold;
}
// Specific to this application
@import 'local/typography';
@import 'grids';

View File

@@ -37,5 +37,4 @@ def check_axe_report(page):
assert violation["impact"] in [
"minor",
"moderate",
"serious",
], f"Accessibility violation: {violation}"