git ssb

16+

Dominic / patchbay



Tree: 728c0ce9d46f93e3a253ac9117807be3cd9e4d96

Files: 728c0ce9d46f93e3a253ac9117807be3cd9e4d96 / app / styles / mixins.js

519 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
40

Built with git-ssb-web