mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Implements patch policies #31914 - https://github.com/fleetdm/fleet/pull/40816 - https://github.com/fleetdm/fleet/pull/41248 - https://github.com/fleetdm/fleet/pull/41276 - https://github.com/fleetdm/fleet/pull/40948 - https://github.com/fleetdm/fleet/pull/40837 - https://github.com/fleetdm/fleet/pull/40956 - https://github.com/fleetdm/fleet/pull/41168 - https://github.com/fleetdm/fleet/pull/41171 - https://github.com/fleetdm/fleet/pull/40691 - https://github.com/fleetdm/fleet/pull/41524 - https://github.com/fleetdm/fleet/pull/41674 --------- Co-authored-by: Jonathan Katz <44128041+jkatz01@users.noreply.github.com> Co-authored-by: jkatz01 <yehonatankatz@gmail.com> Co-authored-by: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Co-authored-by: Jahziel Villasana-Espinoza <jahziel@fleetdm.com>
37 lines
663 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|