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 } })