Skip to content

Commit

Permalink
Styles update
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed Aug 6, 2024
1 parent 67b16bf commit 6312c28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions src/components/cards/CardMember.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ onMounted(() => {
:key="index"
class="tag"
:style="{
'--color-tag': typeof tag === 'object' ? tag.color.toCss() : 'var(--color-tint)',
'--color-tag': typeof tag === 'object' ? tag.color.toCss() : tint,
'--color-tag-text':
typeof tag === 'object' && tag.textColor
? (tag.textColor || props.color).toCss()
Expand Down Expand Up @@ -246,9 +246,6 @@ onMounted(() => {
display: flex;
justify-content: flex-start;
align-items: start;
height: 3rem;
overflow: scroll;
}
.decoration-links {
Expand Down
1 change: 1 addition & 0 deletions src/views/AboutView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
<template>
<div class="card-container">
<CardMember
:color="Color.red"
:links="[
{ name: 'GitHub', url: 'https://github.com', faIcon: ['fab', 'github'] },
{ name: 'Test', url: 'https://google.com' }
Expand Down

0 comments on commit 6312c28

Please sign in to comment.