这可能很明显,但我找不到如何放大SC.LabelView
的字体大小。我现在拥有的是
title: SC.LabelView.design({
layout: { centerX: 0, centerY: 0, height: 36, width: 200 },
tagName: "h1",
value: "Contacts"
})
虽然它是h1
,但它保持“正常”文字,但它是标题,如属性名称所示。
答案 0 :(得分:2)
SproutCore包含一个CSS重置,以便您可以设置页面样式并使其在所有浏览器中看起来都相同。
编辑样式的最佳方法是使用my_app/resources/main_page.css
属性向font-size
添加一些CSS。
$theme h1 {
font-size: 30px;
}
main_page.css
文件中有一些注释和指向其他资源的链接,但您可以从Chance guide了解更多信息。