fix: lang back button styles
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m37s

This commit is contained in:
Hewston Fox
2026-03-22 13:36:22 +02:00
parent 9e035d5007
commit 2c072f1474

View File

@@ -61,7 +61,11 @@ export default function LanguageModal({ open, onClose, onBack }: Props) {
<ContentSurface className={classes.contentSurface}>
<DarkSurface className="rounded-full h-full">
<motion.button className={classes.item} onClick={handleBack} whileTap={{ scale: 0.95 }}>
<motion.button
className={clsx(classes.item, "justify-center text-white text-lg")}
onClick={handleBack}
whileTap={{ scale: 0.95 }}
>
<span>{t("settings.back")}</span>
</motion.button>
</DarkSurface>