Skip to content

Commit 02f4ce5

Browse files
fix(web): match create theme and import theme buttons to the standard outline style (#5860)
1 parent 285cf59 commit 02f4ce5

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

apps/web/src/components/settings/ThemeSettings.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -555,9 +555,8 @@ export function ThemeLibrary({
555555
<h3 className="text-sm font-medium tracking-[-0.005em] text-foreground">Themes</h3>
556556
<div className="flex flex-wrap items-center justify-end gap-3">
557557
<Button
558-
className="h-7 rounded-md border border-border/70 bg-muted/30 px-2 text-xs font-medium text-foreground shadow-none hover:bg-accent/40"
559558
size="xs"
560-
variant="ghost"
559+
variant="outline"
561560
onClick={() =>
562561
openThemeEditor({
563562
editingThemeId: null,
@@ -570,7 +569,7 @@ export function ThemeLibrary({
570569
<PlusIcon />
571570
Create theme
572571
</Button>
573-
<Button size="xs" variant="ghost" onClick={() => onImportOpenChange(true)}>
572+
<Button size="xs" variant="outline" onClick={() => onImportOpenChange(true)}>
574573
<UploadIcon />
575574
Import theme
576575
</Button>

0 commit comments

Comments
 (0)