diff --git a/app/chapter/[chapterNumber]/(chapter)/chapter-page.tsx b/app/chapter/[chapterNumber]/(chapter)/chapter-page.tsx index 69ec567..81f7e1c 100644 --- a/app/chapter/[chapterNumber]/(chapter)/chapter-page.tsx +++ b/app/chapter/[chapterNumber]/(chapter)/chapter-page.tsx @@ -42,7 +42,12 @@ export default function ChapterPage({ : filteredVerses?.slice(0).reverse(); return ( -
{translationData[0].description}
diff --git a/components/Verse/Verse.tsx b/components/Verse/Verse.tsx
index 3a76abc..3e2c6a9 100644
--- a/components/Verse/Verse.tsx
+++ b/components/Verse/Verse.tsx
@@ -49,7 +49,8 @@ export const Verse: FC
{text}
@@ -75,7 +77,8 @@ export const Verse: FC
{transliteration}
@@ -86,7 +89,8 @@ export const Verse: FC
{word_meanings}
diff --git a/hooks/useMyStyles.ts b/hooks/useMyStyles.ts
index 705ac4d..f9bd2ba 100644
--- a/hooks/useMyStyles.ts
+++ b/hooks/useMyStyles.ts
@@ -24,7 +24,7 @@ function useMyStyles() {
fontSize: {
heading: "text-4xl",
subHeading1: "text-intro",
- subHeading2: "text-paragraph",
+ subHeading2: "text-xl",
para: "text-paragraph",
},
};
@@ -37,8 +37,8 @@ function useMyStyles() {
fontSize: {
heading: "text-3xl",
subHeading1: "text-2xl",
- subHeading2: "text-xl",
- para: "text-md",
+ subHeading2: "text-paragraph",
+ para: "text-base",
},
};
});
diff --git a/redux/reducers/settings.ts b/redux/reducers/settings.ts
index 3460707..89012c4 100644
--- a/redux/reducers/settings.ts
+++ b/redux/reducers/settings.ts
@@ -27,7 +27,7 @@ const initialState = {
loading: false,
fontSize: "large", //small, large todo: change to exact values
fontFamily: "proxima", //Tisa Pro, Georgia, Avenir, Proxima Nova
- spacing: "large", //small, medium, large todo: change to exact values
+ spacing: "medium", //small, medium, large todo: change to exact values
bg: "bg-light-bg", //bg-light-bg, bg-yellow-bg, bg-dark-bg
currentVerse: initialVerse,
};
BG {chapter_number}.{verse_number}
@@ -59,7 +60,8 @@ export const Verse: FC