Skip to content

Commit

Permalink
style: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-R44 committed Dec 31, 2023
1 parent f89a926 commit dd4bc33
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
8 changes: 4 additions & 4 deletions resources/components/footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ import Socials from '@/components/socials.vue'
>
<div class="flex flex-col gap-x-24 gap-y-8" md="flex-row">
<div class="flex flex-col gap-y-2 text-sm font-content">
<p class="mb-2 text-lg font-title text-base12">General Resources</p>
<p class="mb-2 text-lg text-base12 font-title">General Resources</p>
<a href="https://docs.adonisjs.com" class="item">Documentation</a>
<a href="https://packages.adonisjs.com" class="item">Packages</a>
<a href="https://buttondown.email/adonisjs" class="item">Newsletter</a>
<a href="https://github.com/adonisjs/core/discussions" class="item">Discussions</a>
</div>
<div class="flex flex-col gap-y-2 text-sm font-content">
<p class="mb-2 text-lg font-title text-base12">Documentations</p>
<p class="mb-2 text-lg text-base12 font-title">Documentations</p>
<a href="https://docs.adonisjs.com" class="item">AdonisJS</a>
<a href="https://japa.dev/" class="item">Japa</a>
<a href="https://edgejs.dev/docs/introduction" class="item">EdgeJS</a>
<a href="https://vinejs.dev/docs/introduction" class="item">VineJS</a>
<a href="https://bentocache.julr.dev" class="item">BentoCache</a>
</div>
<div class="flex flex-col gap-y-2 text-sm font-content">
<p class="mb-2 text-lg font-title text-base12">Others</p>
<p class="mb-2 text-lg text-base12 font-title">Others</p>
<a href="https://blog.adonisjs.com" class="item">Blog</a>
<a href="https://about.adonisjs.com" class="item">About</a>
<a href="https://support.adonisjs.com" class="item">Entreprise Support</a>
Expand All @@ -49,7 +49,7 @@ import Socials from '@/components/socials.vue'
</div>
</div>

<p class="mt-8 py-2 pb-4 text-center text-xs font-content text-base10">
<p class="mt-8 py-2 pb-4 text-center text-xs text-base10 font-content">
Created with
<i
class="i-fluent-emoji-sparkling-heart mx1 inline-block align-sub text-base text-red-500"
Expand Down
6 changes: 3 additions & 3 deletions resources/pages/home/components/pagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function handlePrevClick() {
<nav v-if="pages" aria-label="packages navigation" class="flex items-center gap-2">
<button
aria-label="Next page"
class="flex cursor-pointer items-center justify-center rounded bg-transparent text-2xl font-sans text-base11"
class="flex cursor-pointer items-center justify-center rounded bg-transparent text-2xl text-base11 font-sans"
:class="{
'text-base4': currentPage === 1,
'hover:text-indigo': currentPage !== 1,
Expand All @@ -30,11 +30,11 @@ function handlePrevClick() {
<i class="i-ic-sharp-keyboard-arrow-left inline-block"></i>
</button>

<p class="text-sm font-content text-base11">{{ currentPage }} / {{ pages }}</p>
<p class="text-sm text-base11 font-content">{{ currentPage }} / {{ pages }}</p>

<button
aria-label="Previous page"
class="flex cursor-pointer items-center justify-center rounded bg-transparent text-2xl font-sans text-base11"
class="flex cursor-pointer items-center justify-center rounded bg-transparent text-2xl text-base11 font-sans"
:class="{
'text-base4': currentPage === pages,
'hover:text-indigo': currentPage !== pages,
Expand Down
2 changes: 1 addition & 1 deletion resources/pages/package/components/heading.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defineProps<{
<PackageLogo class="flex-shrink-0" size="16" :package="package" />
<div class="flex flex-col">
<h1 class="relative top-2 mt-1 text-5xl font-bold">{{ package.name }}</h1>
<span class="mt-5 text-base font-content text-base11">
<span class="mt-5 text-base text-base11 font-content">
{{ package.description }}
</span>

Expand Down
3 changes: 1 addition & 2 deletions resources/pages/package/components/links.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,4 @@ defineProps<{
</div>
</template>

<style scoped>
</style>
<style scoped></style>

0 comments on commit dd4bc33

Please sign in to comment.