Files
openfoodnetwork/app/components/table_header_component/table_header_component.scss
2022-12-07 15:08:53 +01:00

24 lines
366 B
SCSS

thead.table-header {
th {
&.th-sortable {
cursor: pointer;
}
&.th-sorted-asc, &.th-sorted-desc {
&:after {
display: inline-block;
padding-left: 10px;
}
}
&.th-sorted-asc {
&:after {
content: "";
}
}
&.th-sorted-desc {
&:after {
content: "";
}
}
}
}