mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-16 11:31:49 +01:00
Update font
This commit is contained in:
@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="bg-white text-gray-900
|
<div class="bg-white text-gray-900
|
||||||
dark:bg-gray-900 min-h-screen dark:text-slate-50">
|
dark:bg-gray-900 min-h-screen dark:text-slate-50"
|
||||||
|
style="font-family: 'Comfortaa';">
|
||||||
<RouterView />
|
<RouterView />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
|
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');
|
||||||
|
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
@ -1,8 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<li>
|
<li>
|
||||||
<router-link :to="props.to" :aria-current="is_active_page ? 'page' : null"
|
<router-link :to="props.to" :aria-current="is_active_page ? 'page' : null"
|
||||||
:class="`block py-2 md:p-0 text-right md:text-center text-gray-700 dark:text-slate-50
|
:class="`block py-2 md:p-0 text-right md:text-center
|
||||||
${is_active_page ? 'font-bold' : 'font-normal hover:underline'}`">
|
${is_active_page ? 'font-bold text-zinc-900 dark:text-zinc-400' : 'font-normal hover:underline text-gray-700 dark:text-slate-50'}`">
|
||||||
{{ props.label }}
|
{{ props.label }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
Reference in New Issue
Block a user