Fix dark mode rendering of config form and centered providers grid for wider screens. (#3837)

This commit is contained in:
Zane
2025-08-07 08:28:55 -07:00
committed by GitHub
parent d3b76df676
commit 9b7593d8cc
5 changed files with 25 additions and 15 deletions
@@ -6,7 +6,13 @@ import { ProviderDetails } from '../../../api';
const GridLayout = memo(function GridLayout({ children }: { children: React.ReactNode }) {
return (
<div className="grid grid-cols-[repeat(auto-fill,_minmax(140px,_1fr))] gap-3 [&_*]:z-20">
<div
className="grid gap-4 [&_*]:z-20 p-1"
style={{
gridTemplateColumns: 'repeat(auto-fill, minmax(200px, 200px))',
justifyContent: 'start',
}}
>
{children}
</div>
);