diff --git a/CHANGELOG.md b/CHANGELOG.md
index cebf21b1..cafea32b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Tables are no longer automatically 100% width but can be made to be with `.tna-table--full`
+- `
` elements with the class `.tna-container` have their `list-style` removed
### Deprecated
### Removed
diff --git a/src/nationalarchives/utilities/colour/colour-themes.stories.js b/src/nationalarchives/utilities/colour/colour-themes.stories.js
index 949b730e..c669dc2d 100644
--- a/src/nationalarchives/utilities/colour/colour-themes.stories.js
+++ b/src/nationalarchives/utilities/colour/colour-themes.stories.js
@@ -567,7 +567,7 @@ const Template = ({ theme, accent }) => {
},
})}
-
+
-
${Card({
params: {
@@ -598,7 +598,7 @@ const Template = ({ theme, accent }) => {
-
+
-
${Card({
params: {
diff --git a/src/nationalarchives/utilities/grid/_index.scss b/src/nationalarchives/utilities/grid/_index.scss
index 886726c9..8e431831 100644
--- a/src/nationalarchives/utilities/grid/_index.scss
+++ b/src/nationalarchives/utilities/grid/_index.scss
@@ -1,4 +1,5 @@
@use "sass:math";
+@use "sass:selector";
@use "../../variables/grid" as gridVars;
@use "../../tools/grid";
@use "../../tools/media";
@@ -30,6 +31,10 @@
&--centred {
justify-content: center;
}
+
+ @at-root #{selector.unify("ul", &)} {
+ list-style: none;
+ }
}
.tna-column {