Skip to content

Commit fd0d203

Browse files
authoredFeb 8, 2025··
Merge pull request #10 from m-mattia-m/develop
fix styling for light mode
2 parents 45cef8f + 9afb67c commit fd0d203

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎components/skills.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ interface skill {
6565
v-for="filter in filters"
6666
:class="[
6767
activeFilters.get(filter)
68-
? 'bg-primary text-white'
69-
: 'bg-white text-primary',
68+
? 'bg-primary text-light'
69+
: 'bg-dark dark:bg-light text-light dark:text-dark',
7070
]"
7171
class="w-fit cursor-pointer flex justify-center rounded-full py-1 px-2 whitespace-nowrap text-xs"
7272
@click="

0 commit comments

Comments
 (0)
Please sign in to comment.