0

根据https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/tokens_standard_communities.htm,我想在闪电网络组件 (LWC) 中使用社区令牌。

在 LWC CSS 文件中,我将 textTransform 标记应用为,

.cssClass{
    text-transform: var(--lwc-textTransform);
}

保存 LWC 时,发生错误No TOKEN named textTransform found。如何在 LWC 中使用 textTransform 令牌?

4

1 回答 1

0

似乎它仅适用于 Aura 组件,并且在定义中未标记为 Global,

根据以下链接:

Lightning Web 组件可以使用任何标记为 Global Access 的 Lightning Design System 设计令牌。如果您收到错误:未找到名为 tokenName 的 TOKEN,您可能正在使用未标记为 Global Access 的令牌。要么使用全局令牌,要么使用自定义 Aura 设计令牌。

https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.create_components_css_design_tokens

于 2021-01-03T10:30:35.827 回答