Skip to content

Commit

Permalink
Fix some text color
Browse files Browse the repository at this point in the history
  • Loading branch information
zvecr committed Jul 15, 2024
1 parent 8a2a447 commit a74dfa3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/[...path].vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</template>

<template v-slot:actions>
<v-btn to="/">Return home</v-btn>
<v-btn color="primary" to="/">Return home</v-btn>
</template>

<template v-slot:media>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
<v-data-table-virtual fixed-header disable-sort height="calc(100vh - 23em)" :loading="!isFinished" :search="search"
:headers="virtual_headers" :items="virtual_keyboards" item-value="keyboard">
<template #[`item.keyboard`]="{ item }">
<v-btn variant="plain" :to="`/keyboard/${item.keyboard}`">{{ item.keyboard }}</v-btn>
<v-btn variant="text" :to="`/keyboard/${item.keyboard}`">{{ item.keyboard }}</v-btn>
</template>
<template #[`item.folder`]="{ item }">
<v-btn variant="plain" icon="fa-brands fa-github" :href="item.folder" />
<v-btn variant="text" icon="fa-brands fa-github" :href="item.folder" />
</template>
<template #[`item.firmware`]="{ item }">
<v-btn variant="plain" icon="fa-solid fa-download" :href="item.firmware" v-if="item.firmware" />
<v-btn variant="text" icon="fa-solid fa-download" :href="item.firmware" v-if="item.firmware" />
</template>
</v-data-table-virtual>

Expand Down

0 comments on commit a74dfa3

Please sign in to comment.