fix(css): correct justify-center syntax error in loading overlay

Fixed invalid CSS property 'justify-center;' on line 486 of
tractatus-theme.css. Changed to correct CSS property:
'justify-content: center;'

This was causing Firefox console errors:
"Unknown property 'justify-center;'. Declaration dropped."

The error was in the .loading-overlay class which is used for
loading states across admin pages. The invalid property prevented
proper centering of loading spinners on mobile devices.

Also regenerated minified CSS (39.4% size reduction: 24KB → 15KB).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
TheFlow 2025-10-24 12:41:53 +13:00
parent bda0de0ceb
commit b670e49d79
2 changed files with 2 additions and 780 deletions

View file

@ -483,7 +483,7 @@ h3 { letter-spacing: -0.015em; }
backdrop-filter: blur(2px); backdrop-filter: blur(2px);
display: flex; display: flex;
align-items: center; align-items: center;
justify-center; justify-content: center;
z-index: 50; z-index: 50;
} }

File diff suppressed because one or more lines are too long