Browse Source

Add app dev card to the app store (#302)

0.3.16
Mayank Chhabra 4 years ago
committed by GitHub
parent
commit
5cc85bf3da
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/CardWidget.vue
  2. 23
      src/views/AppStore.vue

2
src/components/CardWidget.vue

@ -3,7 +3,7 @@
<div class="card-custom-loading-bar" v-if="loading"></div>
<!-- <template v-slot:header></template> -->
<div>
<div class="card-custom-header py-4 px-3 px-lg-4">
<div class="card-custom-header py-4 px-3 px-lg-4" v-if="header">
<div class="d-flex w-100 justify-content-between align-items-center">
<h6 class="mb-0 font-weight-normal text-muted">{{ header }}</h6>
<status

23
src/views/AppStore.vue

@ -61,6 +61,18 @@
</div>
</router-link>
</card-widget>
<card-widget
class="pb-2 card-app-list umbrel-dev-note mt-2"
>
<div class="px-3 px-lg-4 py-3">
<span class="rocket ml-3 ml-lg-4">🚀</span>
<h4 class="font-weight-normal mt-4">Get your app on the Umbrel App Store</h4>
<p class="text-muted mb-3">
Use any programming language, database or framework to build your app for Umbrel.
</p>
<b-link href="https://github.com/getumbrel/umbrel/blob/master/apps/README.md" target="_blank">Learn more</b-link>
</div>
</card-widget>
</div>
</div>
</template>
@ -124,4 +136,15 @@ export default {
display: inline-block;
width: 100%;
}
.umbrel-dev-note {
position: relative;
overflow: visible;
.rocket {
font-size: 60px;
position: absolute;
top: -30px;
left: 0;
}
}
</style>

Loading…
Cancel
Save