mirror of
https://github.com/fleetdm/fleet
synced 2026-05-09 18:20:48 +00:00
18 lines
257 B
SCSS
18 lines
257 B
SCSS
.os-version-table {
|
|
.hosts-cell__wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.os-hosts-link {
|
|
opacity: 0;
|
|
transition: 250ms;
|
|
}
|
|
|
|
tr:hover {
|
|
.os-hosts-link {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|