Skip to content

Commit

Permalink
lower transparency level for better visual effect
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyBlaise99 committed Jan 27, 2024
1 parent 65137ad commit 64b8274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/c-segment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default defineComponent({
return {
isOpen: (this.segment.knownAuthor !== null) || this.segment.lines.length < 5 as boolean,
canOpen: (this.segment.knownAuthor === null) && this.segment.lines.length > 4 as boolean,
transparencyValue: (this.segment.isFullCredit ? '60' : '30') as string,
transparencyValue: (this.segment.isFullCredit ? '50' : '20') as string,
};
},
computed: {
Expand Down

0 comments on commit 64b8274

Please sign in to comment.