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