mirror of
https://forgejo.merr.is/annika/isl-vue3.git
synced 2025-12-18 22:07:39 -05:00
Initial commit...
This commit is contained in:
commit
44fad476d2
40 changed files with 1279 additions and 0 deletions
26
src/views/BlessingPowerView.vue
Normal file
26
src/views/BlessingPowerView.vue
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<script setup lang="ts">
|
||||
import SpecialItemsCard from '@/components/BlessingPower/SpecialItemsCard.vue'
|
||||
import StandardItemsCard from '@/components/BlessingPower/StandardItemsCard.vue'
|
||||
import SummaryCard from '@/components/BlessingPower/SummaryCard.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<v-container>
|
||||
<v-row justify="center">
|
||||
<v-col><StandardItemsCard /></v-col>
|
||||
<v-col><SpecialItemsCard /></v-col>
|
||||
</v-row>
|
||||
<v-row justify="center">
|
||||
<v-col cols="6">
|
||||
<SummaryCard />
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@use "@/styles/settings.scss";
|
||||
:deep(tbody) tr:nth-of-type(even) {
|
||||
background-color: map-get(settings.$purple, "lighten-5");
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue