- Update the way to use the data records on Vuex with Getters!

- Fix: mongodb call passing array todos and categiroes already splitted
This commit is contained in:
Paolo Arena
2019-02-27 02:58:41 +01:00
parent 0e98ac1eaa
commit fa17de24f0
60 changed files with 3133 additions and 1839 deletions

View File

@@ -1,9 +1,11 @@
.svgclass{
.svgclass {
color: white;
transform: translateY(0px);
}
.svgclass_animate {
transform: translateY(-70px);
color: red;
@@ -14,16 +16,24 @@
}
@keyframes gravity{
0%{
#logoimg {
height: 150px;
width: auto;
@media screen and (max-width: 600px) {
}
}
@keyframes gravity {
0% {
transform: rotateY(0deg);
}
100%{
100% {
transform: rotateY(360deg);
}
}
#smile{
#smile {
opacity: 0.1 !important;
fill: red;
}

View File

@@ -13,7 +13,7 @@ export default class Logo extends Vue {
logoimg: string = ''
created() {
this.logoimg = 'statics/images/' + process.env.LOGO_REG
this.logoimg = 'assets/images/' + process.env.LOGO_REG
this.animate()
}