Added type for celestial bodies w/ icons

This commit is contained in:
Alexis
2021-03-05 14:59:11 +01:00
parent 5a62b9568a
commit b6cb9157ed
3 changed files with 158 additions and 5 deletions

View File

@@ -29,3 +29,16 @@ export default defineComponent({
}
});
</script>
<style lang="scss" scoped>
.celestial-list {
display: flex;
justify-content: space-between;
align-items: stretch;
flex-flow: row wrap;
.celestial-item {
width: calc(33% - 15px);
margin-bottom: 20px;
}
}
</style>