Styling of home

This commit is contained in:
Sebastian Seedorf
2022-08-22 17:04:39 +02:00
parent 537a18fb88
commit d964748a66
55 changed files with 1791 additions and 341 deletions

View File

@@ -43,7 +43,7 @@ export const NodeOverview: FC<Props> = ({ node, className, ...props }) => {
</div>
) : null}
<h4>
<I18n id={'page.visualize.imports'} />
<I18n id={'page.visualize.overview.imports'} />
</h4>
<div className={styles.small}>
{node.inputs.map(input => (
@@ -53,7 +53,7 @@ export const NodeOverview: FC<Props> = ({ node, className, ...props }) => {
{node.outputs.length ? (
<>
<h4>
<I18n id={'page.visualize.exports'} />
<I18n id={'page.visualize.overview.exports'} />
</h4>
<div className={styles.small}>
{node.outputs.map(input => (