mirror of https://github.com/Budibase/budibase.git
2 changed files with 34 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||||
|
<script> |
||||
|
import { Page } from "@budibase/bbui" |
||||
|
</script> |
||||
|
|
||||
|
<Page wide> |
||||
|
<slot /> |
||||
|
</Page> |
||||
@ -0,0 +1,27 @@ |
|||||
|
<script> |
||||
|
import { Heading, Layout } from "@budibase/bbui" |
||||
|
</script> |
||||
|
|
||||
|
<Layout noPadding> |
||||
|
<div> |
||||
|
<Heading>Apps</Heading> |
||||
|
</div> |
||||
|
<div class="appList"> |
||||
|
{#each new Array(10) as _} |
||||
|
<div class="app" /> |
||||
|
{/each} |
||||
|
</div> |
||||
|
</Layout> |
||||
|
|
||||
|
<style> |
||||
|
.appList { |
||||
|
display: grid; |
||||
|
grid-gap: 50px; |
||||
|
grid-template-columns: repeat(auto-fill, 300px); |
||||
|
} |
||||
|
.app { |
||||
|
height: 130px; |
||||
|
border-radius: 4px; |
||||
|
background-color: var(--spectrum-global-color-gray-200); |
||||
|
} |
||||
|
</style> |
||||
Loading…
Reference in new issue