Skip to content

Commit

Permalink
ダークモードのときにノートの縁が白っぽくならないようにする (VOICEVOX#1809)
Browse files Browse the repository at this point in the history
ダークモードのときにノートの縁が白っぽくならないように修正

Co-authored-by: Hiroshiba <[email protected]>
  • Loading branch information
sigprogramming and Hiroshiba authored Feb 17, 2024
1 parent cefb99d commit 948c6dd
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/components/Sing/SequencerNote.vue
Original file line number Diff line number Diff line change
Expand Up @@ -194,18 +194,12 @@ const onLyricInputBlur = () => {
// 色は仮
.note-bar {
background-color: hsl(33, 100%, 50%);
border-color: hsl(33, 100%, 78%);
}
.note-lyric {
border-color: hsl(33, 0%, 90%);
}
}
&.overlapping {
.note-bar {
background-color: hsl(130, 35%, 85%);
border-color: hsl(130, 35%, 90%);
}
}
}
Expand All @@ -231,7 +225,7 @@ const onLyricInputBlur = () => {
width: calc(100% + 1px);
height: 100%;
background-color: colors.$primary;
border: 1px solid hsl(130, 35%, 86%);
border: 1px solid rgba(colors.$background-rgb, 0.5);
border-radius: 2px;
cursor: move;
}
Expand Down

0 comments on commit 948c6dd

Please sign in to comment.