mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
53 lines
866 B
SCSS
53 lines
866 B
SCSS
.software-vulnerability-details-page {
|
|
@include vertical-page-layout;
|
|
|
|
.team-dropdown-wrapper {
|
|
@include normalize-team-header;
|
|
}
|
|
|
|
* > h1,
|
|
|
|
h1 {
|
|
font-size: $large;
|
|
}
|
|
|
|
h2 {
|
|
font-size: $medium;
|
|
}
|
|
|
|
.resolved-suffix {
|
|
display: inline;
|
|
@media (max-width: $break-md) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.table-container {
|
|
&__results-count,
|
|
.results-count {
|
|
height: initial;
|
|
}
|
|
|
|
.data-table-block .data-table tbody {
|
|
tr {
|
|
.hosts_count__cell {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
.w250 {
|
|
min-width: initial;
|
|
height: min-content;
|
|
}
|
|
}
|
|
}
|
|
td {
|
|
.link-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: $pad-small;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|