Skip to content

Commit 809a07c

Browse files
committed
style(dashboard): replace space-y utility with gap-y and flex-col
1 parent 3aa6a54 commit 809a07c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dashboard/src/pages/_dashboard.settings.cleanup.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ export default function CleanupSettings() {
359359
</Popover>
360360
</div>
361361

362-
<div className="space-y-2">
362+
<div className="gap-y-2 flex flex-col">
363363
<label className="text-xs font-medium sm:text-sm">{t('settings.cleanup.expiredUsers.target')}</label>
364364
<Select value={deleteTarget} onValueChange={value => setDeleteTarget(value as CleanupDeleteTarget)}>
365365
<SelectTrigger className="w-full text-xs sm:text-sm">
@@ -462,7 +462,7 @@ export default function CleanupSettings() {
462462
<CardDescription className="text-xs sm:text-sm">{t('settings.cleanup.clearUsageData.description')}</CardDescription>
463463
</CardHeader>
464464
<CardContent className="space-y-3 p-4 pt-0 sm:space-y-4 sm:px-6">
465-
<div className="space-y-2">
465+
<div className="gap-y-2 flex flex-col">
466466
<label className="text-xs font-medium sm:text-sm">{t('settings.cleanup.clearUsageData.selectTable')}</label>
467467
<Select value={selectedTable} onValueChange={setSelectedTable}>
468468
<SelectTrigger className="w-full text-xs sm:text-sm">

0 commit comments

Comments
 (0)