Skip to content

Commit

Permalink
Fix imports of ‘core’ from full page examples
Browse files Browse the repository at this point in the history
After the changes in #4955 we need to follow the instructions in our own deprecation message to update the imports from our full-page examples:

```
Importing using 'govuk/core/all' is deprecated. Update your import statement to import 'govuk/core/index'.
```
  • Loading branch information
36degrees committed May 10, 2024
1 parent c24411b commit f991f01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import "govuk/base";
@import "govuk/core/all";
@import "govuk/core";

.app-header--campaign {
padding-bottom: govuk-spacing(2);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import "govuk/base";
@import "govuk/core/all";
@import "govuk/core";

.app-document-list > li {
padding-top: govuk-spacing(4);
Expand Down

0 comments on commit f991f01

Please sign in to comment.