|
|
@@ -241,8 +241,8 @@ const Dashboard: React.FC = () => {
|
|
|
{/* 上班/下班卡片 */}
|
|
|
<View className="flex justify-between mb-4">
|
|
|
{/* 上班打卡 */}
|
|
|
- <View className="flex-1 text-center">
|
|
|
- <View className="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center mx-auto mb-2">
|
|
|
+ <View className="flex-1 flex flex-col items-center">
|
|
|
+ <View className="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center mb-2">
|
|
|
<View className="i-heroicons-arrow-right-on-rectangle-20-solid text-blue-500 text-xl" />
|
|
|
</View>
|
|
|
<Text className="text-xs text-gray-600">上班打卡</Text>
|
|
|
@@ -250,8 +250,8 @@ const Dashboard: React.FC = () => {
|
|
|
</View>
|
|
|
|
|
|
{/* 下班打卡 */}
|
|
|
- <View className="flex-1 text-center">
|
|
|
- <View className="w-12 h-12 rounded-full bg-gray-100 flex items-center justify-center mx-auto mb-2">
|
|
|
+ <View className="flex-1 flex flex-col items-center">
|
|
|
+ <View className="w-12 h-12 rounded-full bg-gray-100 flex items-center justify-center mb-2">
|
|
|
<View className="i-heroicons-arrow-left-on-rectangle-20-solid text-gray-400 text-xl" />
|
|
|
</View>
|
|
|
<Text className="text-xs text-gray-600">下班打卡</Text>
|