From f75819163e5093b88b2920e3fdcfae8c19be2d28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diogo=20Silv=C3=A9rio?= Date: Wed, 24 Jan 2018 23:13:04 -0200 Subject: [PATCH] REFACTORING: Styling button text --- components/flashcards/DeckList.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/components/flashcards/DeckList.js b/components/flashcards/DeckList.js index dded962..1c1a7e6 100644 --- a/components/flashcards/DeckList.js +++ b/components/flashcards/DeckList.js @@ -16,7 +16,7 @@ import DeckItem from '../ui/DeckItem'; import * as services from '../../services'; import * as actions from '../../actions' -import { COLOR_B_4 } from '../../utils/colors'; +import { COLOR_B_4, COLOR_A_1 } from '../../utils/colors'; class DeckList extends Component { @@ -54,7 +54,7 @@ class DeckList extends Component { You have no registered decks. - Add a new deck! + Add a new deck! ); @@ -80,8 +80,11 @@ const styles = StyleSheet.create({ btnAdd: { backgroundColor: COLOR_B_4, borderRadius: 2, - padding: 4, + padding: 6, margin: 10 + }, + text: { + color: COLOR_A_1 } })