Skip to content

Commit

Permalink
fix: add font family for witness chip
Browse files Browse the repository at this point in the history
  • Loading branch information
orlinmalkja committed Oct 30, 2024
1 parent 39ed6e6 commit 0c59e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/annotations.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ function createWitnessEl(witness, witnessColor) {
// create an html element of one witness
const el = document.createElement("span");
el.innerHTML = witness
el.classList.add('t-rounded-3xl', 't-box-border', 't-h-8', 't-py-0.5', 't-px-1.5', 't-text-xs', 't-font-semibold', 't-ml-[3px]')
el.classList.add('t-rounded-3xl', 't-box-border', 't-h-8', 't-py-0.5', 't-px-1.5', 't-text-xs', 't-font-semibold', 't-font-sans', 't-ml-[3px]')
el.style.background = colors[witnessColor]['100']
el.style.color = colors[witnessColor]['600']

Expand Down

0 comments on commit 0c59e1e

Please sign in to comment.