chore: upgrade Infima to alpha.39 (#7306)

This commit is contained in:
Alexey Pyltsyn 2022-05-04 17:06:54 +03:00 committed by GitHub
parent 470e242eef
commit be0dc6b0c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
30 changed files with 147 additions and 208 deletions

View file

@ -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'}}>

View file

@ -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;

View file

@ -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}>

View file

@ -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;

View file

@ -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}>

View file

@ -9,12 +9,7 @@
margin-top: 20px;
}
.list {
padding: 0;
}
.listItem {
list-style: none;
background-color: #242526;
padding: 10px;
border-radius: 4px;