我正在使用react-syntax-highlighter并且遇到了一个问题,我正在尝试在 jsx 中编写一些样式,即paddingLeft: 0
. 但问题是 style 里面指定了语法主题,看起来像这样
<SyntaxHighlighter
language="javascript"
style={docco}
wrapLines={true}
showLineNumbers={true}
codeTagProps={{style: {fontFamily: "inherit"}}}
>
{codeString}
</SyntaxHighlighter>
请注意代码style={docco}
,里面的样式我想申请paddingLeft
但不太明白怎么做