-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update figure script * add image expand * add LLM-jp-3 172B beta1 * improve screen styling * tiny fix * add ignore url
- Loading branch information
Showing
14 changed files
with
476 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.medium-zoom-overlay { | ||
z-index: 20; | ||
} | ||
|
||
.medium-zoom-image { | ||
z-index: 21; | ||
} | ||
|
||
.VPSocialLinks.VPNavBarSocialLinks.social-links { | ||
margin-right: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import DefaultTheme from 'vitepress/theme'; | ||
import { h } from 'vue'; | ||
|
||
import './index.css'; | ||
import { | ||
NolebaseEnhancedReadabilitiesMenu, | ||
NolebaseEnhancedReadabilitiesScreenMenu, | ||
} from "@nolebase/vitepress-plugin-enhanced-readabilities/client"; | ||
import "@nolebase/vitepress-plugin-enhanced-readabilities/client/style.css"; | ||
import type { Options as NolebaseReadOptions } from '@nolebase/vitepress-plugin-enhanced-readabilities/client' | ||
import { InjectionKey as NolebaseReadInjectionKey } from '@nolebase/vitepress-plugin-enhanced-readabilities/client' | ||
|
||
export default { | ||
extends: DefaultTheme, | ||
Layout: () => { | ||
return h(DefaultTheme.Layout, null, { | ||
"nav-screen-content-after": () => h(NolebaseEnhancedReadabilitiesScreenMenu), | ||
"nav-bar-content-after": () => h(NolebaseEnhancedReadabilitiesMenu), | ||
}); | ||
}, | ||
enhanceApp({ app }) { | ||
app.provide(NolebaseReadInjectionKey, { | ||
layoutSwitch: { | ||
defaultMode: 5, | ||
contentLayoutMaxWidth: { | ||
defaultMaxWidth: 85 | ||
}, | ||
pageLayoutMaxWidth: { | ||
defaultMaxWidth: 85 | ||
} | ||
} | ||
} as NolebaseReadOptions); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.