ABCFrame text-color is always black

fixes #977

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2021-01-25 11:12:21 +01:00 committed by Philip Molares
parent 6ac60cfa65
commit 4c1f081399

View file

@ -24,5 +24,5 @@ export const AbcFrame: React.FC<AbcFrameProps> = ({ code }) => {
}).catch(() => { console.error('error while loading abcjs') })
}, [code])
return <div ref={container} className={'abcjs-score bg-white text-center overflow-x-auto'}/>
return <div ref={container} className={'abcjs-score bg-white text-black text-center overflow-x-auto'}/>
}