mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-28 16:37:07 +02:00
chore: upgrade Infima to alpha.39 (#7306)
This commit is contained in:
parent
470e242eef
commit
be0dc6b0c9
30 changed files with 147 additions and 208 deletions
|
@ -15,7 +15,7 @@ export default function DebugRegistry(): JSX.Element {
|
|||
return (
|
||||
<DebugLayout>
|
||||
<h2>Registry</h2>
|
||||
<ul className={styles.list}>
|
||||
<ul className="clean-list">
|
||||
{Object.values(registry).map(([, aliasedPath, resolved]) => (
|
||||
<li key={aliasedPath} className={styles.listItem}>
|
||||
<div style={{marginBottom: '10px'}}>
|
||||
|
|
|
@ -5,12 +5,7 @@
|
|||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
.list {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.listItem {
|
||||
list-style: none;
|
||||
background-color: #242526;
|
||||
padding: 10px;
|
||||
border-radius: 4px;
|
||||
|
|
|
@ -16,7 +16,7 @@ export default function DebugRoutes(): JSX.Element {
|
|||
return (
|
||||
<DebugLayout>
|
||||
<h2>Routes</h2>
|
||||
<ul className={styles.list}>
|
||||
<ul className="clean-list">
|
||||
{routes.map(({path, exact, routes: childRoutes}) => (
|
||||
<li key={path} className={styles.listItem}>
|
||||
<div className={styles.route}>
|
||||
|
|
|
@ -5,12 +5,7 @@
|
|||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
.list {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.listItem {
|
||||
list-style: none;
|
||||
background-color: #242526;
|
||||
padding: 10px;
|
||||
border-radius: 4px;
|
||||
|
|
|
@ -24,7 +24,7 @@ export default function DebugMetadata(): JSX.Element {
|
|||
<code>{siteMetadata.siteVersion || 'No version specified'}</code>
|
||||
</div>
|
||||
<h3 className={styles.sectionTitle}>Plugins and themes</h3>
|
||||
<ul className={styles.list}>
|
||||
<ul className="clean-list">
|
||||
{Object.entries(siteMetadata.pluginVersions).map(
|
||||
([name, versionInformation]) => (
|
||||
<li key={name} className={styles.listItem}>
|
||||
|
|
|
@ -9,12 +9,7 @@
|
|||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.list {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.listItem {
|
||||
list-style: none;
|
||||
background-color: #242526;
|
||||
padding: 10px;
|
||||
border-radius: 4px;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue