git ssb

16+

Dominic / patchbay



Tree: 4d120204aba01d8cce651aa4d814a77e1406f1ee

Files: 4d120204aba01d8cce651aa4d814a77e1406f1ee / app / styles / mixins.js

848 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$colorPrimary {
26 color: #fff
27 background-color: #3dc8c3
28
29 (a) {
30 color: #5c6bc0
31 }
32}
33
34$borderPrimary {
35 border: 1px solid #50aadf
36}
37
38$backgroundPrimary {
39 background-color: #fff
40}
41
42$avatarLarge {
43 width: 56px
44 height: 56px
45}
46
47$avatarSmall {
48 width: 32px
49 height: 32px
50}
51
52$threadWidth {
53 min-width: 780px
54 max-width: 840px
55}
56
57$scrollable {
58 overflow: auto
59 width: 100%
60 height: 100%
61 min-height: 0px
62
63 display: flex
64 flex-direction: column
65
66 div {
67 }
68}
69`
70

Built with git-ssb-web