@@ -55,36 +55,36 @@ You must import the layers in the order listed in the example below.
5555// Basic content styles for typography, links etc. Approximately 10% of
5656// the CSS output if you include everything.
5757
58- @import "node_modules/govuk-frontend/dist/govuk/core/index ";
58+ @import "node_modules/govuk-frontend/dist/govuk/core";
5959
6060// Objects include things like the page template, grid and form groups.
6161// Approximately 5% of the CSS output if you include everything.
6262
63- @import "node_modules/govuk-frontend/dist/govuk/objects/index ";
63+ @import "node_modules/govuk-frontend/dist/govuk/objects";
6464
6565// The components themselves - try to only include the components you
6666// are using in your project. Approximately 70% of the CSS output if
6767// you include everything.
6868
6969<% components . each do |component | %>
70- @import "node_modules/govuk-frontend/dist/govuk/components/<%= component %> /index ";
70+ @import "node_modules/govuk-frontend/dist/govuk/components/<%= component %> ";
7171<% end %>
7272
7373/*
7474// Alternatively, you can import all components:
75- @import "node_modules/govuk-frontend/dist/govuk/components/index ";
75+ @import "node_modules/govuk-frontend/dist/govuk/components";
7676*/
7777
7878// Utilities, for example govuk-clearfix or govuk-visually-hidden.
7979// Approximately 1% of the CSS output if you include everything.
8080
81- @import "node_modules/govuk-frontend/dist/govuk/utilities/index ";
81+ @import "node_modules/govuk-frontend/dist/govuk/utilities";
8282
8383// Overrides, used to adjust things like the amount of spacing on an
8484// element. Override classes always include `-!-` in the class name.
8585// Approximately 15% of the CSS output if you include everything.
8686
87- @import "node_modules/govuk-frontend/dist/govuk/overrides/index ";
87+ @import "node_modules/govuk-frontend/dist/govuk/overrides";
8888
8989/*
9090// Alternatively, you can import the specific groups of overrides
0 commit comments