initial commit

This commit is contained in:
2021-06-28 16:36:49 +01:00
parent 992d88a6c8
commit c712d41599
103 changed files with 44862 additions and 0 deletions
@@ -0,0 +1,31 @@
// Based on https://github.com/alphagov/govuk_publishing_components/blob/v22.0.0/app/assets/stylesheets/govuk_publishing_components/components/_step-by-step-nav-header.scss
// Note - this code for prototype purposes only. It is not production code.
.app-step-nav-header {
@include govuk-text-colour;
position: relative;
padding: 10px;
background: govuk-colour("light-grey", $legacy: "grey-4");
border-top: solid 1px govuk-colour("mid-grey", $legacy: "grey-2");
border-bottom: solid 1px govuk-colour("mid-grey", $legacy: "grey-2");
@include govuk-media-query($from: tablet) {
padding: govuk-spacing(3);
}
}
// scss-lint:disable SelectorFormat
.app-step-nav-header__part-of {
@include govuk-font(16, $weight: bold);
display: block;
padding-bottom: 0.2em;
}
.app-step-nav-header__title {
@extend %govuk-link;
@include govuk-font(24, $weight: bold);
}
// scss-lint:enable SelectorFormat