fix: normalize action button icon spacing and text size
This commit is contained in:
@@ -157,12 +157,17 @@ export const AIToolbar = ({
|
|||||||
|
|
||||||
{/* Action buttons — always visible */}
|
{/* Action buttons — always visible */}
|
||||||
<div className="flex items-center gap-2 flex-wrap">
|
<div className="flex items-center gap-2 flex-wrap">
|
||||||
<Button size="sm" onClick={onAddEvent} className="h-8 text-xs">
|
<Button size="sm" onClick={onAddEvent} className="text-xs">
|
||||||
<CalendarPlus className="h-3.5 w-3.5 mr-1.5" />
|
<CalendarPlus className="h-3.5 w-3.5" />
|
||||||
Add Event
|
Add Event
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<IcsFilePicker onFileSelect={onImport} variant="outline" size="sm">
|
<IcsFilePicker
|
||||||
|
onFileSelect={onImport}
|
||||||
|
variant="outline"
|
||||||
|
size="sm"
|
||||||
|
className="text-xs"
|
||||||
|
>
|
||||||
<FileUp className="h-3.5 w-3.5" />
|
<FileUp className="h-3.5 w-3.5" />
|
||||||
Import
|
Import
|
||||||
</IcsFilePicker>
|
</IcsFilePicker>
|
||||||
@@ -173,18 +178,18 @@ export const AIToolbar = ({
|
|||||||
variant="outline"
|
variant="outline"
|
||||||
size="sm"
|
size="sm"
|
||||||
onClick={onExport}
|
onClick={onExport}
|
||||||
className="h-8 text-xs"
|
className="text-xs"
|
||||||
>
|
>
|
||||||
<Download className="h-3.5 w-3.5 mr-1.5" />
|
<Download className="h-3.5 w-3.5" />
|
||||||
Export
|
Export
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
size="sm"
|
size="sm"
|
||||||
onClick={onClearAll}
|
onClick={onClearAll}
|
||||||
className="h-8 text-xs text-muted-foreground hover:text-destructive"
|
className="text-xs text-muted-foreground hover:text-destructive"
|
||||||
>
|
>
|
||||||
<Trash2 className="h-3.5 w-3.5 mr-1.5" />
|
<Trash2 className="h-3.5 w-3.5" />
|
||||||
Clear
|
Clear
|
||||||
</Button>
|
</Button>
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user