Skip to content

Commit 3f792d0

Browse files
committed
refactor(header): List Style featured
1 parent 4867beb commit 3f792d0

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

dev/components/app/AppTopbar.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ const items = ref([
145145
</template> <template #center>
146146
<div class="text-lg">
147147
<span class="text-yellow-600 font-bold">New: </span>
148-
<router-link to="/samples/formEditor" class="">
149-
<span class="">Form Editor</span>
148+
<router-link to="/outputs/outputList" class="">
149+
<span class="">Output List - listStyle</span>
150150
</router-link>
151151
</div>
152152
</template> <template #end>
@@ -161,7 +161,7 @@ const items = ref([
161161
<MegaMenu :model="items" class="w-134">
162162
<template #item="{ item }">
163163
<router-link v-if="item.route" v-slot="{ href, navigate }" :to="item.route" custom>
164-
<a v-ripple :href="href" class="text-lg" @click="navigate">
164+
<a v-ripple :href="href" class="" @click="navigate">
165165
<span :class="item.icon" />
166166
<span class="ml-2">{{ item.label }}</span>
167167
</a>

dev/uno.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ function convert(color: string) {
1212

1313
export default defineConfig({
1414
presets: [
15-
presetWind4(),
15+
presetWind4({
16+
preflights: {
17+
reset: false,
18+
},
19+
}),
1620
presetIcons({
1721
scale: 1.2,
1822
unit: 'em',

0 commit comments

Comments
 (0)