mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
31 lines
620 B
SCSS
31 lines
620 B
SCSS
.software-vulnerabilities-table {
|
|
// keeps table data within the table container at smaller screen sizes
|
|
.data-table {
|
|
&__wrapper {
|
|
overflow-x: auto;
|
|
}
|
|
}
|
|
|
|
// used to position header text with premium icon correctly
|
|
.column-header {
|
|
display: flex;
|
|
gap: $pad-small;
|
|
}
|
|
|
|
@media (max-width: $break-md) {
|
|
.linkToFilteredHosts__header {
|
|
width: 40px;
|
|
}
|
|
.view-all-hosts-link {
|
|
span {
|
|
display: none;
|
|
}
|
|
}
|
|
.epss_probability__cell,
|
|
.epss_probability__header,
|
|
.cve_published__cell,
|
|
.cve_published__header {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|