diff --git a/vertigo-ui-dsfr/src/components/DsfrFacets.vue b/vertigo-ui-dsfr/src/components/DsfrFacets.vue
index 1d7ae8421..0ae68c443 100644
--- a/vertigo-ui-dsfr/src/components/DsfrFacets.vue
+++ b/vertigo-ui-dsfr/src/components/DsfrFacets.vue
@@ -15,7 +15,7 @@
- {{ facet.label }}
+ {{ facet.label }}
diff --git a/vertigo-ui-dsfr/src/utils.css b/vertigo-ui-dsfr/src/utils.css
index e7dc3fcad..6c2cb681d 100644
--- a/vertigo-ui-dsfr/src/utils.css
+++ b/vertigo-ui-dsfr/src/utils.css
@@ -127,18 +127,71 @@
.self-auto {
align-self: auto;
}
+
.self-start {
align-self: flex-start;
}
+
.self-end {
align-self: flex-end;
}
+
.self-center {
align-self: center;
}
+
.self-stretch {
align-self: stretch;
}
+
.self-baseline {
align-self: baseline;
+}
+
+/* Font utils */
+.font-thin {
+ font-weight: 100;
+}
+.font-extralight {
+ font-weight: 200;
+}
+.font-light {
+ font-weight: 300;
+}
+.font-normal {
+ font-weight: 400;
+}
+.font-medium {
+ font-weight: 500;
+}
+.font-semibold {
+ font-weight: 600;
+}
+.font-bold {
+ font-weight: 700;
+}
+.font-extrabold {
+ font-weight: 800;
+}
+.font-black {
+ font-weight: 900;
+}
+
+.text-left {
+ text-align: left;
+}
+.text-center {
+ text-align: center;
+}
+.text-right {
+ text-align: right;
+}
+.text-justify {
+ text-align: justify;
+}
+.text-start {
+ text-align: start;
+}
+.text-end {
+ text-align: end;
}
\ No newline at end of file