updates, tweaks
This commit is contained in:
parent
46f128ce27
commit
75bb84399b
@ -3,6 +3,7 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
color: #eee;
|
color: #eee;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
background-color: #313131;
|
||||||
|
|
||||||
.section-expand {
|
.section-expand {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
6271
package-lock.json
generated
6271
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
@ -8,15 +8,15 @@
|
|||||||
"postinstall": "nuxt prepare"
|
"postinstall": "nuxt prepare"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/marked": "^4.0.7",
|
"@types/marked": "^4.0.8",
|
||||||
"marked": "^4.2.3",
|
"marked": "^4.3.0",
|
||||||
"nuxt": "^3.0.0",
|
"nuxt": "^3.3.3",
|
||||||
"prettier": "^2.8.0",
|
"prettier": "^2.8.7",
|
||||||
"yaml": "^2.1.3"
|
"yaml": "^2.2.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"feed": "^4.2.2",
|
"feed": "^4.2.2",
|
||||||
"highlight.js": "^11.7.0",
|
"highlight.js": "^11.7.0",
|
||||||
"sass": "^1.56.1"
|
"sass": "^1.60.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -179,8 +179,8 @@ const socialLinks = [
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const currentYear = new Date().getFullYear();
|
const currentYear = computed(() => new Date().getFullYear());
|
||||||
const evertAge = (() => {
|
const evertAge = computed(() => {
|
||||||
const today = new Date();
|
const today = new Date();
|
||||||
const birthDate = new Date('2000-04-18');
|
const birthDate = new Date('2000-04-18');
|
||||||
let age = today.getFullYear() - birthDate.getFullYear();
|
let age = today.getFullYear() - birthDate.getFullYear();
|
||||||
@ -189,5 +189,5 @@ const evertAge = (() => {
|
|||||||
age--;
|
age--;
|
||||||
}
|
}
|
||||||
return age;
|
return age;
|
||||||
})();
|
});
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user