diff --git a/CHANGELOG.md b/CHANGELOG.md index 11ca91c..d46ac69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Theme registration of jQuery. - Polyfill for CSS `calc()`. +## [v0.5.2] - 2025-01-22 + +### Removed +- Empty sass files + ## [v0.5.1] - 2024-08-08 ### Changed diff --git a/assets/scss/components/_global-footer.scss b/assets/scss/components/_global-footer.scss deleted file mode 100644 index 7030dd1..0000000 --- a/assets/scss/components/_global-footer.scss +++ /dev/null @@ -1,3 +0,0 @@ -.global-footer { - -} diff --git a/assets/scss/components/_global-header.scss b/assets/scss/components/_global-header.scss deleted file mode 100644 index 26b1764..0000000 --- a/assets/scss/components/_global-header.scss +++ /dev/null @@ -1,3 +0,0 @@ -.global-header { - -} diff --git a/assets/scss/core/_forms.scss b/assets/scss/core/_forms.scss deleted file mode 100644 index e69de29..0000000 diff --git a/assets/scss/core/_reset.scss b/assets/scss/core/_reset.scss deleted file mode 100644 index e69de29..0000000 diff --git a/assets/scss/editor.scss b/assets/scss/editor.scss index fed4405..e54f789 100644 --- a/assets/scss/editor.scss +++ b/assets/scss/editor.scss @@ -40,8 +40,6 @@ $govuk-assets-path: '/wp-content/themes/govuk-theme/static/lib/govuk-frontend/di Unlike when using classes, element selectors can target the arbitrary, unattributed content produced by WYSIWYG editors. --------------------------------------------------------------*/ -@import "core/forms"; -@import "core/reset"; @import "core/typography"; @@ -51,7 +49,6 @@ $govuk-assets-path: '/wp-content/themes/govuk-theme/static/lib/govuk-frontend/di These classes are all layout objects that don't impose any visual styles other than postioning and moving things around. --------------------------------------------------------------*/ -@import "objects/grid"; /*-------------------------------------------------------------- diff --git a/assets/scss/main.scss b/assets/scss/main.scss index 0031e4a..28c4bc3 100644 --- a/assets/scss/main.scss +++ b/assets/scss/main.scss @@ -40,8 +40,6 @@ $govuk-assets-path: '/wp-content/themes/govuk-theme/static/lib/govuk-frontend/di Unlike when using classes, element selectors can target the arbitrary, unattributed content produced by WYSIWYG editors. --------------------------------------------------------------*/ -@import "core/forms"; -@import "core/reset"; @import "core/typography"; @@ -51,7 +49,6 @@ $govuk-assets-path: '/wp-content/themes/govuk-theme/static/lib/govuk-frontend/di These classes are all layout objects that don't impose any visual styles other than postioning and moving things around. --------------------------------------------------------------*/ -@import "objects/grid"; /*-------------------------------------------------------------- @@ -61,10 +58,7 @@ $govuk-assets-path: '/wp-content/themes/govuk-theme/static/lib/govuk-frontend/di will often be generated by WordPress in the element e.g. .page, .single, .archive. --------------------------------------------------------------*/ -@import "templates/archive"; -@import "templates/page"; @import "templates/search"; -@import "templates/single"; /*-------------------------------------------------------------- @@ -75,9 +69,7 @@ $govuk-assets-path: '/wp-content/themes/govuk-theme/static/lib/govuk-frontend/di than element styles, but require the author to affect the markup directly. --------------------------------------------------------------*/ -@import "components/global-footer"; @import "components/global-footer-menu"; -@import "components/global-header"; @import "components/navigation"; @import "components/pagination"; @import "components/search-form"; diff --git a/assets/scss/objects/_grid.scss b/assets/scss/objects/_grid.scss deleted file mode 100644 index e69de29..0000000 diff --git a/assets/scss/templates/_archive.scss b/assets/scss/templates/_archive.scss deleted file mode 100644 index e69de29..0000000 diff --git a/assets/scss/templates/_page.scss b/assets/scss/templates/_page.scss deleted file mode 100644 index e69de29..0000000 diff --git a/assets/scss/templates/_single.scss b/assets/scss/templates/_single.scss deleted file mode 100644 index e69de29..0000000