fleet/frontend/pages/admin/TeamManagementPage/TeamDetailsWrapper/UsersPage/_styles.scss
2026-03-13 16:47:09 -04:00

37 lines
663 B
SCSS

.team-users {
@include vertical-page-tab-panel-layout;
.data-table-block {
.data-table__table {
thead {
.name__header {
width: initial; // Allows name to take up as much space on table as it can before truncating
}
.role__header {
width: $col-sm;
}
}
tbody {
.role__cell {
max-width: $col-sm;
}
.email__cell {
max-width: 171px;
}
@media (min-width: $break-md) {
.email__cell {
max-width: $col-md;
}
}
.actions__cell {
width: auto;
}
}
}
}
}