From 2af38e56840bab6aac60d175b1117fd68a63287c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Antoine=20Dupr=C3=A9?= <ant.dupre@gmail.com>
Date: Wed, 17 May 2023 18:34:37 +0200
Subject: [PATCH] fix: css-grid responsive

---
 src/styles/custom-grid.scss | 43 +++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/src/styles/custom-grid.scss b/src/styles/custom-grid.scss
index 7a29609..55f72ec 100644
--- a/src/styles/custom-grid.scss
+++ b/src/styles/custom-grid.scss
@@ -39,6 +39,49 @@
         width: 100%;
     }
 }
+@media(max-width: 768px) {
+.segment.sm-whitespace-normal {
+    .width-10 {
+        width: 100%;
+    }
+    .width-20 {
+        width: 100%;
+    }
+    .width-25 {
+        width: 100%;
+    }
+    .width-30 {
+        width: 100%;
+    }
+    .width-40 {
+        width: 100%;
+    }
+    .width-45 {
+        width: 100%;
+    }
+    .width-50 {
+        width: 100%;
+    }
+    .width-60 {
+        width: 100%;
+    }
+    .width-70 {
+        width: 100%;
+    }
+    .width-75 {
+        width: 100%;
+    }
+    .width-80 {
+        width: 100%;
+    }
+    .width-90 {
+        width: 100%;
+    }
+    .width-100 {
+        width: 100%;
+    }
+}
+}
 .rowClear {
     white-space: normal;
 }
-- 
GitLab