diff --git a/packages/common/styles.js b/packages/common/styles.js
index 1ad9c80b3937213117be32dff21da8fa1c710878..41401414c01816a5607152f3689ac24b035becb5 100644
--- a/packages/common/styles.js
+++ b/packages/common/styles.js
@@ -647,5 +647,15 @@ export function getSelect2CSS() {
             font-weight: 300;
             /* color: red; */
         }
+
+        /* Work around single selections not wrapping and breaking responsivness */
+        .select2-container--default .select2-selection--single {
+            height: 100% !important;
+        }
+        .select2-container--default .select2-selection__rendered{
+            word-wrap: break-word !important;
+            text-overflow: inherit !important;
+            white-space: normal !important;
+        }
     `;
 }