Closed lmunozdiaz closed 10 months ago
return Object.assign({}, config, { padding: config.padding || "12px 30px 30px 30px", backgroundColor: palette.base, foregroundColor: palette.text, cursorColor: palette.highlightHigh, cursorAccentColor: palette.text, selectionColor: palette.highlightMed, borderColor: "#0000", css: ` .tab_text { color: ${palette.subtle} } .tab_textActive { color: ${palette.text} } `, colors, });
The above code is missing
${config.css || ''}
before
.tab_text { }
so, any CSS from other plugins isn't merging with those from this one.
Solution:
css: ` ${config.css || ''} .tab_text { color: ${palette.subtle} } .tab_textActive { color: ${palette.text} } `
The above code is missing
before
so, any CSS from other plugins isn't merging with those from this one.
Solution: