1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Aligning not found state

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-05-17 13:39:37 +03:00
parent db8463b055
commit 51231ae2df
2 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ export function InstalledExtensions({ extensions, uninstall }: Props) {
return <div><Spinner center /></div>; return <div><Spinner center /></div>;
} }
if (extensions.length != 0) { if (extensions.length == 0) {
return ( return (
<div className="flex column h-full items-center justify-center"> <div className="flex column h-full items-center justify-center">
<Icon material="extension" className={styles.noItemsIcon}/> <Icon material="extension" className={styles.noItemsIcon}/>
@ -123,7 +123,7 @@ export function InstalledExtensions({ extensions, uninstall }: Props) {
return ( return (
<section> <section>
<List <List
title={<h2 className={styles.title}>Installed</h2>} title={<h2 className={styles.title}>Installed extensions</h2>}
columns={columns} columns={columns}
data={data} data={data}
items={extensions} items={extensions}

View File

@ -1,5 +1,5 @@
.notFound { .notFound {
@apply flex items-center justify-center h-10; @apply flex items-center justify-center h-24;
color: var(--textColorDimmed); color: var(--textColorDimmed);
} }