diff --git a/src/components/Dialog.tsx b/src/components/Dialog.tsx
index d907e27..20f4985 100644
--- a/src/components/Dialog.tsx
+++ b/src/components/Dialog.tsx
@@ -14,19 +14,20 @@ const DialogComponent = ({ visible, hideDialog, contentText }: CustomDialogProps
return (
);
diff --git a/src/components/Grid.tsx b/src/components/Grid.tsx
index 764e51c..7e32aa2 100644
--- a/src/components/Grid.tsx
+++ b/src/components/Grid.tsx
@@ -7,7 +7,7 @@ import { GridViewProps } from '../types';
const GridView = ({ words }: GridViewProps) => {
return (
-
+
{words.map((word, index) => (
{index + 1}.
diff --git a/src/styles/stylesheet.js b/src/styles/stylesheet.js
index e3a8c5b..15a27d7 100644
--- a/src/styles/stylesheet.js
+++ b/src/styles/stylesheet.js
@@ -75,7 +75,36 @@ const styles = StyleSheet.create({
borderRadius: 10,
},
dialogWarning: {
- color: 'red',
+ color: '#FFA3A8',
+ },
+ mnemonicTitle:{
+ backgroundColor: '#18181A',
+ },
+ mnemonicContainer:{
+ backgroundColor: '#18181A',
+ },
+ mnomonicDialogWarning: {
+ color: '#FFA3A8',
+ marginTop: 10
+ },
+ mnemonicButtonRow: {
+ paddingRight: 40,
+ backgroundColor: '#18181A'
+ },
+ mnemonicButton:{
+ backgroundColor: '#0000F4',
+ color: 'white',
+ padding: 2,
+ marginBottom: 20
+ },
+ mnemonicGridContainer: {
+ flexDirection: 'row',
+ flexWrap: 'wrap',
+ justifyContent: 'center',
+ marginTop: 20,
+ paddingBottom: 30,
+ borderBottomWidth: 1,
+ borderBottomColor: '#29292E'
},
gridContainer: {
flexDirection: 'row',
@@ -83,14 +112,13 @@ const styles = StyleSheet.create({
justifyContent: 'center',
},
gridItem: {
- width: '25%',
- margin: 8,
- padding: 6,
- borderWidth: 1,
- borderColor: '#ccc',
- borderRadius: 8,
+ width: '30%',
+ margin: 4,
+ padding: 4,
+ borderRadius: 4,
alignItems: 'center',
justifyContent: 'flex-start',
+ backgroundColor: '#29292E'
},
HDcontainer: {
marginTop: 24,