Slight amendments, remove debug info
This commit is contained in:
parent
0cdee66c1d
commit
a76d959431
6
app.vue
6
app.vue
|
@ -3,22 +3,18 @@ import { useQuasar } from 'quasar'
|
||||||
|
|
||||||
const quasar = useQuasar()
|
const quasar = useQuasar()
|
||||||
|
|
||||||
console.log(quasar.screen)
|
|
||||||
|
|
||||||
useHead({
|
useHead({
|
||||||
titleTemplate: (chunk) => {
|
titleTemplate: (chunk) => {
|
||||||
return !chunk || chunk === 'Enderman' ? 'Enderman' : `${chunk} – Enderman`
|
return !chunk || chunk === 'Enderman' ? 'Enderman' : `${chunk} – Enderman`
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
// animate__animated-sm animate__delay-1-5s animate__fadeInDown
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<NuxtLoadingIndicator color="purple" />
|
<NuxtLoadingIndicator color="purple" />
|
||||||
<div
|
<div
|
||||||
id="ender-layout"
|
id="ender-layout"
|
||||||
class="d-flex flex-column align-items-center pt-sm-5 h-100"
|
class="d-flex flex-column align-items-center pt-sm-5 h-100 animate__animated-sm animate__delay-1-5s animate__fadeInDown"
|
||||||
>
|
>
|
||||||
<NuxtLayout name="card">
|
<NuxtLayout name="card">
|
||||||
<template #footer>
|
<template #footer>
|
||||||
|
|
|
@ -86,7 +86,7 @@ useHead({
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
The list above is not exhaustive and only includes the most recent and the
|
The list above is not exhaustive and only includes the most recent and
|
||||||
largest projects I remembered while constructing this page.
|
largest projects I remembered while constructing this page.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in New Issue