We had a need to resize the session management columns so that the username (for us, the same as email) column would be larger. I thought I’d share how to accomplish this with CSS in the LMS:
/* Resize columns in session management */
.hyd-table .hyd-table-col:nth-child(2) {
flex-basis: 25% !important;
}
The “nth-child(2)” is where the column number is specified, so you could use this same principle to adjust a different column by changing the “2” to something else. This solution steals about 10% of the space from other columns.
Hope this helps someone!