2022-06-26 23:01:10 +00:00
|
|
|
<script setup lang="ts">
|
2022-07-01 01:27:18 +00:00
|
|
|
import CharacterInventory from "./components/CharacterInventory.vue"
|
|
|
|
import Login from "./pages/login.vue"
|
|
|
|
import SessionDisplay from "./components/SessionDisplay.vue";
|
2022-06-26 23:01:10 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-07-01 01:27:18 +00:00
|
|
|
<SessionDisplay/>
|
|
|
|
<Login/>
|
|
|
|
<CharacterInventory/>
|
2022-06-26 23:01:10 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#app {
|
|
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-align: center;
|
|
|
|
color: #2c3e50;
|
|
|
|
margin-top: 60px;
|
|
|
|
}
|
2022-07-01 01:27:18 +00:00
|
|
|
|
|
|
|
.handsontable td {
|
|
|
|
border-right: 0px !important;
|
|
|
|
border-left: 0px !important;
|
|
|
|
border-top: 1px white !important;
|
|
|
|
border-bottom: 1px white !important;
|
|
|
|
background-color: #F7F7F7 !important;
|
|
|
|
}
|
|
|
|
.handsontable tr {
|
|
|
|
border-radius: 10px !important;
|
|
|
|
}
|
2022-06-26 23:01:10 +00:00
|
|
|
</style>
|