feat: improved missions UI and more sophisticated unlock options

This commit is contained in:
pskfyi 2022-01-10 21:48:15 -08:00 committed by John McCardle
commit 4f0b3c7741
4 changed files with 196 additions and 40 deletions

View file

@ -0,0 +1,20 @@
<template>
<div class="rounded-lg border text-center py-1">
{{ mission.name }}
</div>
</template>
<script>
export default {
props: {
mission: { type: Object, required: true },
},
}
</script>
<style scoped>
div {
border-color: currentColor;
background-color: rgba(0, 0, 0, 0.1);
}
</style>