Skip to content

Commit effae84

Browse files
Sankhadeep RoySankhadeep Roy
authored andcommitted
more bug fixes
1 parent 9c79e22 commit effae84

File tree

7 files changed

+110
-77
lines changed

7 files changed

+110
-77
lines changed

Components/Themes/light.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ module.exports = {
1414
textColor: "#000",
1515

1616
fontSizeBase: 15,
17+
titleFontSize: 17,
1718

1819
get fontSizeH1 () {
1920
return this.fontSizeBase*1.8;
@@ -51,6 +52,9 @@ module.exports = {
5152
toolbarDefaultBg: "#3b8355",
5253
toolbarInverseBg: "#222",
5354

55+
tabBgColor: "#3b8355",
56+
tabTextColor: "#fff",
57+
5458
get darkenHeader() {
5559
return Color(this.toolbarDefaultBg).darken(0.03).hexString();
5660
},

Components/Widgets/Card.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default class CardNB extends NativeBaseComponent {
2222
shadowOffset: {width: 0, height: 2},
2323
shadowOpacity: 0.1,
2424
shadowRadius: 1.5,
25-
elevaton: 1
25+
elevation: 1
2626
}
2727
}
2828
}
@@ -36,8 +36,8 @@ export default class CardNB extends NativeBaseComponent {
3636
return computeProps(this.props, defaultProps);
3737

3838
}
39-
40-
render() {
39+
40+
render() {
4141
return(
4242
<View {...this.prepareRootProps()} >
4343
{this.props.children}

0 commit comments

Comments
 (0)