Browse Source

improve border radius (#24486)

tags/1.8.0
znn 2 months ago
parent
commit
b4be132201
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web/app/components/base/app-icon-picker/index.tsx

+ 1
- 1
web/app/components/base/app-icon-picker/index.tsx View File

@@ -120,7 +120,7 @@ const AppIconPicker: FC<AppIconPickerProps> = ({
<button
key={tab.key}
className={`
flex h-8 flex-1 shrink-0 items-center justify-center rounded-xl p-2 text-sm font-medium
flex h-8 flex-1 shrink-0 items-center justify-center rounded-lg p-2 text-sm font-medium
${activeTab === tab.key && 'bg-components-main-nav-nav-button-bg-active shadow-md'}
`}
onClick={() => setActiveTab(tab.key as AppIconType)}

Loading…
Cancel
Save