Version Release Final Touches (#84)

* Remove slim

* bug: opacity issues

* bug: startup failure with no database

* ci/cd on dev branch

* formatting

* v0.1.0 documentation

Co-authored-by: Hayden <hay-kot@pm.me>
This commit is contained in:
Hayden
2021-01-17 10:53:42 -09:00
committed by GitHub
parent 6bc7c4ceb0
commit a76f472aa4
50 changed files with 2796 additions and 2704 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -12,24 +12,24 @@
"axios": "^0.21.1",
"core-js": "^3.8.2",
"fuse.js": "^6.4.6",
"qs": "^6.9.4",
"qs": "^6.9.6",
"v-jsoneditor": "^1.4.2",
"vue": "^2.6.11",
"vue-i18n": "^8.22.3",
"vue-i18n": "^8.22.4",
"vue-router": "^3.4.9",
"vuetify": "^2.4.2",
"vuex": "^3.6.0",
"vuex-persistedstate": "^4.0.0-beta.2"
"vuex-persistedstate": "^4.0.0-beta.3"
},
"devDependencies": {
"@intlify/vue-i18n-loader": "^1.0.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/cli-plugin-babel": "^4.5.10",
"@vue/cli-plugin-eslint": "^4.5.10",
"@vue/cli-service": "^4.5.10",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"sass": "^1.32.0",
"sass": "^1.32.4",
"sass-loader": "^8.0.0",
"vue-cli-plugin-i18n": "~1.0.1",
"vue-cli-plugin-vuetify": "^2.0.8",

View File

@@ -1,5 +1,10 @@
<template>
<v-card color="accent" class="transparent" tile :width="`${timeCardWidth}`">
<v-card
color="accent"
class="custom-transparent"
tile
:width="`${timeCardWidth}`"
>
<v-card-text
class="text-caption white--text"
v-if="totalTime || prepTime || performTime"
@@ -95,8 +100,8 @@ export default {
};
</script>
<style>
.transparent {
opacity: 70% !important;
<style scoped>
.custom-transparent {
opacity: 0.7;
}
</style>