This repository has been archived on 2024-03-13. You can view files and clone it, but cannot push or open issues or pull requests.
2022-01-08 03:46:33 +00:00
|
|
|
<template>
|
|
|
|
<div class="tab-content grid md:overflow-hidden">
|
|
|
|
<template v-for="(mission, index) in $store.state.missions">
|
|
|
|
<progress-button
|
|
|
|
:key="index"
|
|
|
|
:label="mission.name"
|
|
|
|
:description="mission.description"
|
2022-01-09 18:12:52 +00:00
|
|
|
:max="mission.completionCriteria.cost"
|
|
|
|
:value="$store.state.currency"
|
2022-01-08 03:46:33 +00:00
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.tab-content {
|
|
|
|
--columns: 1;
|
|
|
|
grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
|
|
|
|
grid-gap: 1rem;
|
|
|
|
}
|
|
|
|
/* md */
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.tab-content {
|
|
|
|
--columns: 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* 2xl */
|
|
|
|
@media (min-width: 1536px) {
|
|
|
|
.tab-content {
|
|
|
|
--columns: 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|