mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
41 lines
711 B
SCSS
41 lines
711 B
SCSS
.team-management {
|
|
&__page-description {
|
|
font-size: $x-small;
|
|
color: $core-fleet-black;
|
|
@include sticky-settings-description;
|
|
padding-bottom: $pad-medium;
|
|
}
|
|
.data-table-block {
|
|
.data-table__table {
|
|
thead {
|
|
.name__header {
|
|
width: auto;
|
|
}
|
|
|
|
.host_count__header,
|
|
.user_count__header {
|
|
width: $col-md;
|
|
}
|
|
|
|
.actions__header {
|
|
width: $col-sm;
|
|
}
|
|
}
|
|
|
|
tbody {
|
|
.name__cell {
|
|
width: auto;
|
|
}
|
|
|
|
.host_count__cell,
|
|
.user_count__cell {
|
|
max-width: $col-md;
|
|
}
|
|
|
|
.actions__cell {
|
|
width: $col-sm;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|