git ssb

16+

Dominic / patchbay



Tree: 20b068c61874ad0cae6afbd9ab2ffefe1fb2f74c

Files: 20b068c61874ad0cae6afbd9ab2ffefe1fb2f74c / app / styles / mixins.js

518 bytesRaw
1const nest = require('depnest')
2const { assign } = Object
3
4// this is either:
5// - wrong domain
6// - wrong gives
7//
8exports.gives = nest('styles.mixins')
9
10exports.create = function (api) {
11 return nest('styles.mixins', (sofar = {}) => {
12 return assign(sofar, { mainMixins })
13 })
14}
15
16const mainMixins = `
17$textPrimary {
18 color: #222
19}
20
21$textSubtle {
22 color: gray
23}
24
25$backgroundPrimary {
26 background-color: #50aadf
27}
28
29$avatarLarge {
30 width: 56px
31 height: 56px
32}
33
34$avatarSmall {
35 width: 32px
36 height: 32px
37}
38`
39

Built with git-ssb-web