mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
40 lines
799 B
SCSS
40 lines
799 B
SCSS
.header-cell {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
|
|
.sort-arrows {
|
|
height: 14px;
|
|
padding-left: $pad-small;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.ascending-arrow {
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 5px solid transparent;
|
|
border-right: 5px solid transparent;
|
|
border-bottom: 6px solid $ui-fleet-black-25;
|
|
}
|
|
.descending-arrow {
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 5px solid transparent;
|
|
border-right: 5px solid transparent;
|
|
border-top: 6px solid $ui-fleet-black-25;
|
|
}
|
|
|
|
&.ascending {
|
|
.ascending-arrow {
|
|
border-bottom-color: $core-fleet-black;
|
|
}
|
|
}
|
|
|
|
&.descending {
|
|
.descending-arrow {
|
|
border-top-color: $core-fleet-black;
|
|
}
|
|
}
|
|
}
|