Skip to content

Commit

Permalink
Merge pull request #2057 from kaloudis/zeus-2053
Browse files Browse the repository at this point in the history
ZEUS-2053: Android: Tooltip text hidden in Dark Theme mode
  • Loading branch information
kaloudis committed Mar 15, 2024
2 parents 91f48cd + 2410fc2 commit 515a061
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/Modals/InfoModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import ModalStore from '../../stores/ModalStore';

import { localeString } from '../../utils/LocaleUtils';
import UrlUtils from '../../utils/UrlUtils';
import { themeColor } from '../../utils/ThemeUtils';

interface InfoModalProps {
ModalStore: ModalStore;
Expand Down Expand Up @@ -48,7 +49,7 @@ export default class InfoModal extends React.Component<InfoModalProps, {}> {
>
<View
style={{
backgroundColor: 'white',
backgroundColor: themeColor('secondary'),
borderRadius: 30,
padding: 30,
width: '100%',
Expand All @@ -63,6 +64,7 @@ export default class InfoModal extends React.Component<InfoModalProps, {}> {
<Text
style={{
fontFamily: 'PPNeueMontreal-Book',
color: themeColor('text'),
fontSize: 20,
marginBottom: 40
}}
Expand All @@ -77,6 +79,7 @@ export default class InfoModal extends React.Component<InfoModalProps, {}> {
key={index}
style={{
fontFamily: 'PPNeueMontreal-Book',
color: themeColor('text'),
fontSize: 20,
marginBottom: 40
}}
Expand Down

0 comments on commit 515a061

Please sign in to comment.