Add padding to image model picker (#7494)

This commit is contained in:
Matt Rubens 2025-08-28 10:27:41 -04:00 committed by GitHub
parent 8e666078e4
commit 6ef9dbd873
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -94,7 +94,7 @@ export const ImageGenerationSettings = ({
onChange={(e: any) => setSelectedModel(e.target.value)}
className="w-full">
{IMAGE_GENERATION_MODELS.map((model) => (
<VSCodeOption key={model.value} value={model.value}>
<VSCodeOption key={model.value} value={model.value} className="py-2 px-3">
{model.label}
</VSCodeOption>
))}