This commit is contained in:
2025-10-12 20:06:10 +08:00
parent 84837de999
commit 75f1e529ac

View File

@@ -29,6 +29,7 @@ function TextCard({
<div className="max-h-26 text-3xl overflow-y-auto">{item.text}</div> <div className="max-h-26 text-3xl overflow-y-auto">{item.text}</div>
<div className="max-h-16 overflow-y-auto text-xl text-gray-600 whitespace-nowrap overflow-x-auto">{item.ipa}</div> <div className="max-h-16 overflow-y-auto text-xl text-gray-600 whitespace-nowrap overflow-x-auto">{item.ipa}</div>
</div> </div>
<div className="flex justify-center items-center border-gray-300 border-l-2 m-2">
<IconClick <IconClick
src={IMAGES.delete} src={IMAGES.delete}
alt="delete" alt="delete"
@@ -37,6 +38,7 @@ function TextCard({
size={42}> size={42}>
</IconClick> </IconClick>
</div> </div>
</div>
); );
} }