Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions apps/web/src/components/settings/ThemeSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -555,9 +555,8 @@ export function ThemeLibrary({
<h3 className="text-sm font-medium tracking-[-0.005em] text-foreground">Themes</h3>
<div className="flex flex-wrap items-center justify-end gap-3">
<Button
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"
size="xs"
variant="ghost"
variant="outline"
onClick={() =>
openThemeEditor({
editingThemeId: null,
Expand All @@ -570,7 +569,7 @@ export function ThemeLibrary({
<PlusIcon />
Create theme
</Button>
<Button size="xs" variant="ghost" onClick={() => onImportOpenChange(true)}>
<Button size="xs" variant="outline" onClick={() => onImportOpenChange(true)}>
<UploadIcon />
Import theme
</Button>
Expand Down
Loading