Skip to content

Commit 6c19dc1

Browse files
committed
style: minor
1 parent 3fad12b commit 6c19dc1

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

apps/frontend/app/components/layouts/default/DefaultHeader.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
</div>
1212

1313
<div
14-
class="divide-primary-2 text-body-2 text-grey-500 col-span-6 h-full flex flex-row justify-center gap-2 2xl:gap-10 lg:gap-6 md:gap-5 sm:gap-4 xl:gap-7 [&>*]:(px-4 md:px-6 xl:px-8)"
14+
class="divide-primary-2 text-body-2 col-span-6 h-full flex flex-row justify-center gap-2 text-gray-800 font-medium 2xl:gap-10 lg:gap-6 md:gap-5 sm:gap-4 xl:gap-7 [&>*]:(px-4 md:px-6 xl:px-8) dark:text-gray-200"
1515
>
1616
<NuxtLink
1717
to="/" class="group flex items-center"
18-
exact-active-class="text-white font-medium border-t-2px border-primary-400 bg-gradient-to-b from-primary-400/20"
18+
exact-active-class="text-white font-semibold border-t-2px border-primary-400 bg-gradient-to-b from-primary-400/20"
1919
>
2020
<span class="group-hover:text-mainGradient">{{ $t('pages.home.title') }}</span>
2121
</NuxtLink>
2222

2323
<NuxtLink
2424
to="/test" class="group flex items-center"
25-
active-class="text-white font-medium border-t-2px border-primary-400 bg-gradient-to-b from-primary-400/20"
25+
active-class="text-white font-semibold border-t-2px border-primary-400 bg-gradient-to-b from-primary-400/20"
2626
>
2727
<span class="group-hover:text-mainGradient">{{ $t('pages.test.title') }}</span>
2828
</NuxtLink>

apps/frontend/uno.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default defineConfig({
6060
},
6161
},
6262
shortcuts: [
63-
['bg-mainGradient', 'bg-gradient-to-b from-primary to-pink'],
63+
['bg-mainGradient', 'bg-gradient-to-b from-primary via-primary to-violet-400'],
6464
['text-mainGradient', 'bg-mainGradient bg-clip-text text-transparent transition-color duration-200'],
6565
],
6666
rules: [
@@ -117,6 +117,10 @@ export default defineConfig({
117117
italic: true,
118118
},
119119
},
120+
timeouts: {
121+
warning: 3000,
122+
failure: 10000,
123+
},
120124
}),
121125
presetAnimations(),
122126
presetShadcn({ color: false, radius: false }, { globals: false }),

0 commit comments

Comments
 (0)