mirror of
https://github.com/fleetdm/fleet
synced 2026-05-05 14:28:46 +00:00
35 lines
677 B
SCSS
35 lines
677 B
SCSS
.software-vulnerabilities-table {
|
|
// keeps table data within the table container at smaller screen sizes
|
|
.data-table {
|
|
&__wrapper {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
th:nth-last-child(2) {
|
|
border-right: 0;
|
|
}
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
}
|
|
}
|