diff --git a/front/ui-docs/components/ui/layout/grid.md b/front/ui-docs/components/ui/layout/grid.md
index d4dd266f2..18a7f8a3d 100644
--- a/front/ui-docs/components/ui/layout/grid.md
+++ b/front/ui-docs/components/ui/layout/grid.md
@@ -46,7 +46,7 @@ _Note that we set the width to match 2 columns plus one gap._
-### Let elements span multiple rows, columns, or areas:
+### Let elements span multiple rows, columns, or areas
```vue-html{1,2}
@@ -94,7 +94,7 @@ You can also span an element to a rectangle of multiple columns and rows, in the
You can pass any valid CSS `grid` value to the `grid` prop.
-#### Minimal width, fit as many as possible on one row:
+#### Minimal width, fit as many as possible on one row
```vue-html
@@ -114,7 +114,7 @@ You can pass any valid CSS `grid` value to the `grid` prop.
-#### Up to 2 in a row, between 230-x and 300px:
+#### Up to 2 in a row, between 230-x and 300px
```vue-html
-#### Up to 5 in a row, between 230-x and 300px:
+#### Up to 5 in a row, between 230-x and 300px
```vue-html
-#### As many as fit, at least 100px, stretch them if necessary:
+#### As many as fit, at least 100px, stretch them if necessary
```vue-html
-#### Three columns of different widths, stretch gaps if necessary:
+#### Three columns of different widths, stretch gaps if necessary
```vue-html
```ts
-import Header from "~/components/ui/Header.vue";
+import Header from '~/components/ui/Header.vue'
```
# Page header
diff --git a/front/ui-docs/components/ui/layout/section.md b/front/ui-docs/components/ui/layout/section.md
index 0a0fb6270..652bd542b 100644
--- a/front/ui-docs/components/ui/layout/section.md
+++ b/front/ui-docs/components/ui/layout/section.md
@@ -102,7 +102,7 @@ const user: User = {
```ts
-import Section from "~/components/ui/Section.vue";
+import Section from '~/components/ui/Section.vue'
```
# Layout section
diff --git a/front/ui-docs/components/ui/layout/spacer.md b/front/ui-docs/components/ui/layout/spacer.md
index 4852e0dc8..ef80cd9ba 100644
--- a/front/ui-docs/components/ui/layout/spacer.md
+++ b/front/ui-docs/components/ui/layout/spacer.md
@@ -18,14 +18,14 @@ const size = ref(32)
```ts
-import Spacer from "~/components/ui/Spacer.vue";
+import Spacer from '~/components/ui/Spacer.vue'
```
# Spacer
Add a 16px gap between adjacent items.
-##### Without spacer:
+##### Without spacer
@@ -43,7 +43,7 @@ Add a 16px gap between adjacent items.
-##### With spacer:
+##### With spacer
@@ -61,7 +61,7 @@ Add a 16px gap between adjacent items.
-##### Spacers can also be added for horizontal space:
+##### Spacers can also be added for horizontal space
diff --git a/front/ui-docs/components/ui/layout/table.md b/front/ui-docs/components/ui/layout/table.md
index fca0db67f..acb6c04c5 100644
--- a/front/ui-docs/components/ui/layout/table.md
+++ b/front/ui-docs/components/ui/layout/table.md
@@ -5,7 +5,7 @@ import Button from "~/components/ui/Button.vue"; // Need to import this, else vi
```ts
-import Table from "~/components/ui/Table.vue";
+import Table from '~/components/ui/Table.vue'
```
# Table