-
-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Description
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} }
`Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels