@@ -662,8 +662,8 @@ export const AnalysisGameList: React.FC<AnalysisGameListProps> = ({
662
662
} `}
663
663
>
664
664
< 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
667
667
</ span >
668
668
< span className = "text-xs text-white/90" > Hand</ span >
669
669
</ div >
@@ -840,7 +840,7 @@ export const AnalysisGameList: React.FC<AnalysisGameListProps> = ({
840
840
disabled = { currentPage === 1 }
841
841
className = "flex items-center justify-center text-secondary hover:text-primary disabled:opacity-50"
842
842
>
843
- < span className = "material-symbols-outlined" >
843
+ < span className = "material-symbols-outlined !text-lg " >
844
844
first_page
845
845
</ span >
846
846
</ button >
@@ -849,19 +849,19 @@ export const AnalysisGameList: React.FC<AnalysisGameListProps> = ({
849
849
disabled = { currentPage === 1 }
850
850
className = "flex items-center justify-center text-secondary hover:text-primary disabled:opacity-50"
851
851
>
852
- < span className = "material-symbols-outlined" >
852
+ < span className = "material-symbols-outlined !text-xs " >
853
853
arrow_back_ios
854
854
</ span >
855
855
</ button >
856
- < span className = "text-sm text-secondary" >
856
+ < span className = "text-xs text-secondary" >
857
857
Page { currentPage } of { totalPages }
858
858
</ span >
859
859
< button
860
860
onClick = { ( ) => handlePageChange ( currentPage + 1 ) }
861
861
disabled = { currentPage === totalPages }
862
862
className = "flex items-center justify-center text-secondary hover:text-primary disabled:opacity-50"
863
863
>
864
- < span className = "material-symbols-outlined" >
864
+ < span className = "material-symbols-outlined !text-xs " >
865
865
arrow_forward_ios
866
866
</ span >
867
867
</ button >
@@ -870,7 +870,7 @@ export const AnalysisGameList: React.FC<AnalysisGameListProps> = ({
870
870
disabled = { currentPage === totalPages }
871
871
className = "flex items-center justify-center text-secondary hover:text-primary disabled:opacity-50"
872
872
>
873
- < span className = "material-symbols-outlined" >
873
+ < span className = "material-symbols-outlined !text-lg " >
874
874
last_page
875
875
</ span >
876
876
</ button >
0 commit comments