Skip to content

Commit cb444d1

Browse files
style: minor ui improvements
1 parent 4cd14b5 commit cb444d1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/components/Analysis/AnalysisGameList.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -662,8 +662,8 @@ export const AnalysisGameList: React.FC<AnalysisGameListProps> = ({
662662
}`}
663663
>
664664
<div className="flex items-center justify-center gap-1">
665-
<span className="material-symbols-outlined !text-lg text-white/80">
666-
hand_gesture
665+
<span className="material-symbols-outlined material-symbols-filled !text-base text-white/80">
666+
back_hand
667667
</span>
668668
<span className="text-xs text-white/90">Hand</span>
669669
</div>
@@ -840,7 +840,7 @@ export const AnalysisGameList: React.FC<AnalysisGameListProps> = ({
840840
disabled={currentPage === 1}
841841
className="flex items-center justify-center text-secondary hover:text-primary disabled:opacity-50"
842842
>
843-
<span className="material-symbols-outlined">
843+
<span className="material-symbols-outlined !text-lg">
844844
first_page
845845
</span>
846846
</button>
@@ -849,19 +849,19 @@ export const AnalysisGameList: React.FC<AnalysisGameListProps> = ({
849849
disabled={currentPage === 1}
850850
className="flex items-center justify-center text-secondary hover:text-primary disabled:opacity-50"
851851
>
852-
<span className="material-symbols-outlined">
852+
<span className="material-symbols-outlined !text-xs">
853853
arrow_back_ios
854854
</span>
855855
</button>
856-
<span className="text-sm text-secondary">
856+
<span className="text-xs text-secondary">
857857
Page {currentPage} of {totalPages}
858858
</span>
859859
<button
860860
onClick={() => handlePageChange(currentPage + 1)}
861861
disabled={currentPage === totalPages}
862862
className="flex items-center justify-center text-secondary hover:text-primary disabled:opacity-50"
863863
>
864-
<span className="material-symbols-outlined">
864+
<span className="material-symbols-outlined !text-xs">
865865
arrow_forward_ios
866866
</span>
867867
</button>
@@ -870,7 +870,7 @@ export const AnalysisGameList: React.FC<AnalysisGameListProps> = ({
870870
disabled={currentPage === totalPages}
871871
className="flex items-center justify-center text-secondary hover:text-primary disabled:opacity-50"
872872
>
873-
<span className="material-symbols-outlined">
873+
<span className="material-symbols-outlined !text-lg">
874874
last_page
875875
</span>
876876
</button>

0 commit comments

Comments
 (0)