Skip to content

Commit

Permalink
Allow urls to wrap and setup widths on datalist to be responsive (#1892)
Browse files Browse the repository at this point in the history
fixes #1868

Note:  Datatable with resize properly with a reload, but not with a change of the window.
  • Loading branch information
carolyncole authored Aug 12, 2024
1 parent a18d8a8 commit 640ae7f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/assets/stylesheets/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,8 @@ dl {

dd {
grid-column-start: 2;
width: calc(100% - 10rem);
word-wrap: break-word;
}
}

Expand Down Expand Up @@ -373,4 +375,8 @@ div.form-subcommunities .form-check{

.hidden-element {
display: none;
}
}

table.dataTable {
overflow-wrap: anywhere
}

0 comments on commit 640ae7f

Please sign in to comment.