fix: replace flex-shrink-0 with shrink-0 for consistent styling across components

This commit is contained in:
GitHub Actions
2026-03-09 20:03:57 +00:00
parent 82a55da026
commit 542d4ff3ee
21 changed files with 2977 additions and 35 deletions

View File

@@ -452,9 +452,9 @@ export default function SystemSettings() {
/>
{publicURLValid !== null && (
publicURLValid ? (
<CheckCircle2 className="h-5 w-5 text-green-500 self-center flex-shrink-0" />
<CheckCircle2 className="h-5 w-5 text-green-500 self-center shrink-0" />
) : (
<XCircle className="h-5 w-5 text-red-500 self-center flex-shrink-0" />
<XCircle className="h-5 w-5 text-red-500 self-center shrink-0" />
)
)}
</div>