Skip to content
Snippets Groups Projects
Commit 2482b16c authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Add a workaround for single selections not word wrapping

parent ce0dcc81
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
`;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment