Fix first time app creation modal not being centered and flashing apps when loading the page

This commit is contained in:
Andrew Kingston 2021-05-18 13:56:05 +01:00
parent 7fb40cd7ad
commit c9e4d74846
1 changed files with 3 additions and 3 deletions

View File

@ -160,7 +160,7 @@
/>
</ActionGroup>
</div>
{#if $apps.length}
{#if loaded && $apps.length}
<div
class:appGrid={layout === "grid"}
class:appTable={layout === "table"}
@ -230,7 +230,7 @@
}
.select {
width: 120px;
width: 150px;
}
.appGrid {
@ -248,7 +248,7 @@
height: 70px;
display: grid;
align-items: center;
gap: var(--spacing-xl);
grid-gap: var(--spacing-xl);
grid-template-columns: auto 1fr;
white-space: nowrap;
overflow: hidden;