mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
21 lines
323 B
SCSS
21 lines
323 B
SCSS
.view-all-hosts-button {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&__text {
|
|
&--responsive {
|
|
@media (max-width: $break-md) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__condensed {
|
|
margin-right: $pad-medium;
|
|
}
|
|
|
|
// For tabbing through the app
|
|
&:focus-visible.row-hover-button {
|
|
opacity: 1;
|
|
}
|
|
}
|