Moved utils to seperate folder and fixed issue with textbuttons

This commit is contained in:
Erik Tiekstra
2017-05-12 09:25:45 +02:00
parent 4c0b388805
commit 31483537a5
20 changed files with 181 additions and 148 deletions
-9
View File
@@ -1,14 +1,5 @@
'use strict';
module.exports = {
color: '#ffffff',
fontFamily: 'breuer',
fontSize: 14,
background: '#000000',
activeBackground: '#444444',
cursor: 'pointer',
originX: 'center',
originY: 'center',
padding: 20,
margin: 5,
};
+6
View File
@@ -0,0 +1,6 @@
'use strict';
module.exports = {
fontSize: 12,
activeFill: '#000000',
};
+13
View File
@@ -0,0 +1,13 @@
'use strict';
module.exports = {
color: '#ffffff',
fontFamily: 'breuer',
fontSize: 14,
fill: '#000000',
activeFill: '#444444',
cursor: 'pointer',
originX: 'center',
originY: 'center',
padding: 20,
};