File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ const Header: FC = () => {
81
81
setShowMobileSideNav ( false ) ;
82
82
} , [ location . pathname ] ) ;
83
83
84
- let navbarStyle = 'theme-colored ' ;
84
+ let navbarStyle = 'theme-light ' ;
85
85
let themeMode = 'light' ;
86
86
const { theme, theme_config } = themeSettingStore ( ( _ ) => _ ) ;
87
87
if ( theme_config ?. [ theme ] ?. navbar_style ) {
@@ -186,8 +186,8 @@ const Header: FC = () => {
186
186
< >
187
187
< Link
188
188
className = { classnames ( 'me-2 btn btn-link' , {
189
- 'link-light' : navbarStyle === 'theme-colored ' ,
190
- 'link-primary' : navbarStyle !== 'theme-colored ' ,
189
+ 'link-light' : navbarStyle === 'theme-dark ' ,
190
+ 'link-primary' : navbarStyle !== 'theme-dark ' ,
191
191
} ) }
192
192
onClick = { ( ) => floppyNavigation . storageLoginRedirect ( ) }
193
193
to = { userCenter . getLoginUrl ( ) } >
@@ -197,7 +197,7 @@ const Header: FC = () => {
197
197
< Link
198
198
className = { classnames (
199
199
'btn' ,
200
- navbarStyle === 'theme-colored ' ? 'btn-light' : 'btn-primary' ,
200
+ navbarStyle === 'theme-dark ' ? 'btn-light' : 'btn-primary' ,
201
201
) }
202
202
to = { userCenter . getSignUpUrl ( ) } >
203
203
{ t ( 'btns.signup' ) }
You can’t perform that action at this time.
0 commit comments