【发布时间】:2018-09-27 10:10:34
【问题描述】:
如果有人想知道
你在你的项目中安装 sheetify
使用 npm
npm install sheetify
然后在你的 choo 组件中
const html = require('choo/html')
const css = require('sheetify')
const yourVariable = css`
:host {
color: red;
}
@media screen and (min-width: 768px) {
:host {
color: blue;
}
}
`
const yourComponent = () => {
return html`
<h1 class=${yourVariable}>This text is styled</h1>
`
}
module.exports = yourComponent
【问题讨论】:
-
问题在标题中,答案在内容中。是的。到目前为止,这是一个只有一个答案的问题;)
标签: javascript css media-queries