fix: design

This commit is contained in:
Fredrik Burmester
2024-08-14 08:59:25 +02:00
parent e715b3daa4
commit 65838034b6

View File

@@ -48,7 +48,7 @@ export const PlayedStatus: React.FC<{ item: BaseItemDto }> = ({ item }) => {
}} }}
> >
<View className="rounded h-12 aspect-square flex items-center justify-center"> <View className="rounded h-12 aspect-square flex items-center justify-center">
<Ionicons name="checkmark-circle" size={26} color="white" /> <Ionicons name="checkmark-circle" size={30} color="white" />
</View> </View>
</TouchableOpacity> </TouchableOpacity>
) : ( ) : (
@@ -64,7 +64,7 @@ export const PlayedStatus: React.FC<{ item: BaseItemDto }> = ({ item }) => {
}} }}
> >
<View className="rounded h-12 aspect-square flex items-center justify-center"> <View className="rounded h-12 aspect-square flex items-center justify-center">
<Ionicons name="checkmark-circle-outline" size={26} color="white" /> <Ionicons name="checkmark-circle-outline" size={30} color="white" />
</View> </View>
</TouchableOpacity> </TouchableOpacity>
)} )}