File tree 4 files changed +18
-12
lines changed
4 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -74,21 +74,22 @@ export const headerMenuConfig: IHeaderMenu[] = [
74
74
icon : h ( FaSolidUserFriends ) ,
75
75
path : '/friends' ,
76
76
} ,
77
- {
78
- title : '之言' ,
79
- icon : h ( FaSolidComment ) ,
80
- path : '/recently' ,
81
- } ,
82
- {
83
- title : '项目' ,
84
- icon : h ( MdiFlask ) ,
85
- path : '/projects' ,
86
- } ,
77
+
87
78
{
88
79
title : '其他' ,
89
80
icon : h ( FaSolidCircleNotch ) ,
90
81
path : '/favorite/music' ,
91
82
subMenu : [
83
+ {
84
+ title : '之言' ,
85
+ icon : h ( FaSolidComment ) ,
86
+ path : '/recently' ,
87
+ } ,
88
+ {
89
+ title : '项目' ,
90
+ icon : h ( MdiFlask ) ,
91
+ path : '/projects' ,
92
+ } ,
92
93
{
93
94
title : '一言' ,
94
95
path : '/says' ,
Original file line number Diff line number Diff line change @@ -93,7 +93,10 @@ export const FABBase = (
93
93
return (
94
94
< button
95
95
className = { clsxm (
96
- 'mt-2 inline-flex h-8 w-8 items-center justify-center rounded-md border border-accent bg-base-100 text-accent opacity-50 transition-all duration-300 hover:opacity-100 focus:opacity-100 focus:outline-none' ,
96
+ 'mt-2 inline-flex h-10 w-10 items-center justify-center' ,
97
+ 'border border-accent transition-all duration-300 hover:opacity-100 focus:opacity-100 focus:outline-none' ,
98
+ 'rounded-xl border border-zinc-400/20 bg-base-100/80 shadow-lg backdrop-blur-lg dark:border-zinc-500/30 dark:bg-zinc-800/80 dark:text-zinc-200' ,
99
+ 'bg-base-100 shadow-lg' ,
97
100
( ! show || appearTransition ) && 'translate-x-[60px]' ,
98
101
! mounted && 'hidden' ,
99
102
className ,
Original file line number Diff line number Diff line change @@ -235,6 +235,8 @@ export const FloatPopover: FC<
235
235
aria-modal = "true"
236
236
className = { clsxm (
237
237
'bg-base-100 !shadow-out-sm focus:!shadow-out-sm focus-visible:!shadow-out-sm' ,
238
+ 'rounded-xl border border-zinc-400/20 bg-base-100/80 p-4 shadow-lg outline-none backdrop-blur-lg dark:border-zinc-500/30' ,
239
+
238
240
headless && styles [ 'headless' ] ,
239
241
animate && styles [ 'animate' ] ,
240
242
type === 'tooltip'
Original file line number Diff line number Diff line change 1
1
.popover-root {
2
- @apply relative z-[2 ] overflow-hidden rounded-lg p-4 shadow-out-sm;
2
+ @apply relative z-[2 ] overflow-hidden p-4 shadow-out-sm;
3
3
}
4
4
5
5
.popover-root ,
You can’t perform that action at this time.
0 commit comments