Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: article paragraph text clip at the end #38

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/components/htmlRenderer/HTMLRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ const useTagStyles = (): Record<string, MixedStyleDeclaration> => {
() => ({
p: {
marginVertical: 4,
alignSelf: 'center',
minWidth: '100%',
},
strong: {
fontFamily: 'SourceSansPro-SemiBold',
Expand Down Expand Up @@ -193,7 +195,7 @@ const styles = StyleSheet.create({
},
quoteSimbol: {
fontSize: 70,
marginRight: 12,
marginRight: 4,
},
quoteText: {
margin: 8,
Expand Down
1 change: 1 addition & 0 deletions app/screens/article/ArticleContentComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ const styles = StyleSheet.create({
marginBottom: 16,
lineHeight: 34,
fontSize: 23,
alignSelf: 'center',
},
playerContainer: {
width: '100%',
Expand Down
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1733,6 +1733,6 @@ SPEC CHECKSUMS:
THEOplayerSDK-core: 543fe68107ae62f169daf6b0c236243f283b5461
Yoga: b76f1acfda8212aa16b7e26bcce3983230c82603

PODFILE CHECKSUM: 05f6426a9eab3e5fe8997fd152e7d4036066fddc
PODFILE CHECKSUM: 1abe670af5a1bfc7806168d704ca6c80b56badd3

COCOAPODS: 1.15.2
2 changes: 2 additions & 0 deletions ios/lrtApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1077,6 +1077,7 @@
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = lt.lrtlt.lrtltapp.FCMImageNotification;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SKIP_INSTALL = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
TARGETED_DEVICE_FAMILY = "1,2";
Expand Down Expand Up @@ -1114,6 +1115,7 @@
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = lt.lrtlt.lrtltapp.FCMImageNotification;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SKIP_INSTALL = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
TARGETED_DEVICE_FAMILY = "1,2";
Expand Down
Loading