1
0
Fork 0
mirror of synced 2024-07-14 18:55:45 +12:00

Adjust no results text when searching for screens

This commit is contained in:
Andrew Kingston 2023-08-22 16:21:48 +01:00
parent 909941aa6e
commit 7e706c403a

View file

@ -106,10 +106,10 @@
</NavItem>
{/each}
{:else}
<Layout paddingY="L" paddingX="L">
<Body size="S">
There aren't any screens matching the current filters
</Body>
<Layout paddingY="none" paddingX="L">
<div class="no-results">
There aren't any screens matching that route
</div>
</Layout>
{/if}
</div>
@ -240,4 +240,8 @@
margin-left: 4px;
margin-right: 4px;
}
.no-results {
color: var(--spectrum-global-color-gray-600);
}
</style>