Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Commit b191803

Browse files
Merge pull request #542 from lifeomic/style-bug-fixes
Font Scaling/Dark theme fixes
2 parents aa5c336 + bced8e5 commit b191803

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

src/components/Messaging/SearchRecipientsModal.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,11 @@ const defaultStyles = createStyles('SearchRecipientsModal', (theme) => {
158158
backgroundColor: theme.colors.primary,
159159
marginVertical: 16,
160160
marginRight: 16,
161-
height: 35,
162161
alignSelf: 'center',
163162
},
164163
doneButtonLabel: {
165164
color: theme.colors.onPrimary,
166165
fontSize: 14,
167-
lineHeight: 16,
168166
textAlignVertical: 'center',
169167
},
170168
};

src/components/TrackTile/TrackerDetails/TrackerDetails.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -308,13 +308,12 @@ export const TrackerDetails: FC<TrackerDetailsProps> = (props) => {
308308

309309
const defaultStyles = createStyles('TrackerDetails', (theme) => ({
310310
imageContainer: {
311-
width: 326,
312-
height: 210,
311+
width: 280,
312+
height: 200,
313313
},
314314
image: {
315315
flex: 1,
316316
resizeMode: 'contain',
317-
width: 200,
318317
},
319318
radialProgressBorderView: {},
320319
radialProgressContainer: {

src/components/TrackTile/TrackerRow/Tracker.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ export function Tracker(tracker: TrackerProps) {
8989

9090
const size = 95;
9191
const defaultStyles = createStyles('Tracker', (theme) => ({
92-
trackerNameText: {},
92+
trackerNameText: {
93+
color: theme.colors.onSurface,
94+
},
9395
trackerNameDisabledText: {
9496
color: '#7B8996',
9597
},

src/screens/ComposeMessageScreen.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,6 @@ const defaultStyles = createStyles('ComposeMessageScreen', (theme) => ({
318318
color: theme.colors.secondary,
319319
},
320320
searchRecipientsModalContainer: {
321-
backgroundColor: theme.colors.elevation.level1,
322321
height: Platform.select({ android: '90%', default: '100%' }),
323322
width: '90%',
324323
marginHorizontal: '5%',

0 commit comments

Comments
 (0)