hof 20.0.0-beta.10 → 20.0.0-beta.13
Sign up to get free protection for your applications and to get access to all the features.
- package/frontend/template-partials/views/partials/form.html +2 -1
- package/frontend/themes/gov-uk/styles/govuk.scss +4 -0
- package/package.json +1 -1
- package/sandbox/assets/scss/app.scss +1 -1
- package/sandbox/package.json +1 -0
- package/sandbox/public/css/app.css +0 -2821
- package/sandbox/server.js +2 -1
- package/sandbox/yarn.lock +20 -1
@@ -1,7 +1,8 @@
|
|
1
1
|
<form action="" method="POST" {{$encoding}}{{/encoding}} autocomplete="off" novalidate="true" spellcheck="false">
|
2
2
|
{{$intro}}
|
3
|
-
{{#intro}}<
|
3
|
+
{{#intro}}<p>{{intro}}</p>{{/intro}}
|
4
4
|
{{/intro}}
|
5
|
+
|
5
6
|
{{$form}}{{/form}}
|
6
7
|
{{#csrf-token}}
|
7
8
|
<input type="hidden" name="x-csrf-token" value="{{csrf-token}}" />
|
@@ -12,6 +12,10 @@ $path: "/public/images/" !default;
|
|
12
12
|
// https://github.com/alphagov/govuk_elements/blob/master/packages/govuk-elements-sass/public/sass/_elements.scss
|
13
13
|
@import "govuk-elements-sass/public/sass/elements";
|
14
14
|
|
15
|
+
// Govuk frontend
|
16
|
+
// https://github.com/alphagov/govuk-frontend-docs
|
17
|
+
@import "node_modules/govuk-frontend/govuk/all";
|
18
|
+
|
15
19
|
// Custom
|
16
20
|
@import "base";
|
17
21
|
@import "layout";
|
package/package.json
CHANGED