Files: 41ed6a5aa572f6de601bab35fc108a955657c074 / modules_core / style-mixins.js
226 bytesRaw
1 | |
2 | const mixins = ` |
3 | $text-primary { |
4 | color: black |
5 | } |
6 | |
7 | $text-subtle { |
8 | color: gray |
9 | } |
10 | ` |
11 | |
12 | module.exports = { |
13 | gives: { |
14 | mcss: true |
15 | }, |
16 | create: function (api) { |
17 | return { |
18 | mcss: () => mixins |
19 | } |
20 | } |
21 | } |
22 | |
23 |
Built with git-ssb-web