Skip to content

Commit 794fc63

Browse files
committed
Fix class detection in the logo
1 parent 4ffc0e2 commit 794fc63

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

layouts/default.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ V:1 nm="abcjs"
252252
titleEl.parentElement.appendChild(titleEl);
253253
document.querySelector('#abcjs-logo svg').setAttribute("viewBox", "34 0 370 96");
254254
const staffExtra = document.querySelectorAll('#abcjs-logo svg .abcjs-staff-extra');
255-
staffExtra[0].classList.add("clef");
255+
staffExtra[0].classList.add("abcjs-clef");
256256
}
257257
}
258258
</script>
@@ -326,13 +326,13 @@ V:1 nm="abcjs"
326326
#abcjs-logo {
327327
height: 40px;
328328
}
329-
#abcjs-logo .staff, #abcjs-logo .staff-extra, #abcjs-logo .symbol, #abcjs-logo .bar {
329+
#abcjs-logo .abcjs-staff, #abcjs-logo .abcjs-staff-extra, #abcjs-logo .abcjs-symbol, #abcjs-logo .abcjs-bar {
330330
fill: #b3b38b !important;
331331
}
332-
#abcjs-logo .staff-extra.clef {
332+
#abcjs-logo .abcjs-staff-extra.abcjs-clef {
333333
fill-opacity: 0.3;
334334
}
335-
#abcjs-logo .voice-name, #abcjs-logo .note, #abcjs-logo .beam-elem {
335+
#abcjs-logo .abcjs-voice-name, #abcjs-logo .abcjs-note, #abcjs-logo .abcjs-beam-elem {
336336
fill: #42A5F5 !important;
337337
}
338338
.list__tile--active {

0 commit comments

Comments
 (0)