git ssb

2+

mixmix / ticktack



Commit 3734f09bcf0c150f93dc4e556b99bab42b27be3a

fix mcss I broke during merge, add mcss bug-catcher!

mix irving committed on 8/18/2017, 5:02:43 AM
Parent: 5ab138f415f014e52c4f2489a0807515aa58340e

Files changed

app/html/nav.mcssdeleted
styles/css.jschanged
styles/mixins.jschanged
app/html/nav.mcssView
styles/css.jsView
@@ -36,7 +36,11 @@
3636 }
3737
3838 function mcssToCss (mcssObj, mixinsStr) {
3939 return map(mcssObj, (mcssStr, [name]) => {
40- return compile(mixinsStr + '\n' + mcssStr)
40+ const newCss = compile(mixinsStr + '\n' + mcssStr)
41+ if (newCss == '') {
42+ console.error('Some broken mcss!', { name, mcssStr, mixinsStr })
43+ }
44+ return newCss
4145 })
4246 }
styles/mixins.jsView
@@ -69,8 +69,9 @@
6969 h1, h2, h3, h4, h5, h6, p {
7070 font-weight: bold
7171 }
7272 }
73+}
7374
7475 $borderSubtle {
7576 border: 1px solid #b9b9b9
7677 }

Built with git-ssb-web