satof3 2 年 前
コミット
148e3f8a57
1 ファイル変更2 行追加2 行削除
  1. 2 2
      apps/app/src/components/Admin/Users/SortIcons.tsx

+ 2 - 2
apps/app/src/components/Admin/Users/SortIcons.tsx

@@ -13,14 +13,14 @@ export const SortIcons = (props: SortIconsProps): JSX.Element => {
   return (
     <div className="d-flex flex-column text-center">
       <a
-        className={`${isSelected && isAsc ? 'text-primary' : 'text-secondary'}`}
+        className={`${isSelected && isAsc ? 'text-primary' : 'text-muted'}`}
         aria-hidden="true"
         onClick={() => onClick('asc')}
       >
         <span className="material-symbols-outlined">expand_less</span>
       </a>
       <a
-        className={`${isSelected && !isAsc ? 'text-primary' : 'text-secondary'}`}
+        className={`${isSelected && !isAsc ? 'text-primary' : 'text-muted'}`}
         aria-hidden="true"
         onClick={() => onClick('desc')}
       >