diff --git a/app/assets/styles/blink/_AboutModal.scss b/app/assets/styles/blink/_AboutModal.scss index a5fe2cc..2dd7204 100644 --- a/app/assets/styles/blink/_AboutModal.scss +++ b/app/assets/styles/blink/_AboutModal.scss @@ -1,17 +1,24 @@ .title { padding: 5px; font-size: 36px; text-align: center; } .body { padding: 10px; font-size: 16px; text-align: center; } +.link { + padding: 10px; + font-size: 16px; + text-align: center; + color: blue; +} + .container { padding: 20px; margin: 0px; padding-bottom: 40px; } diff --git a/app/components/AboutModal.js b/app/components/AboutModal.js index 4f03b25..41642bb 100644 --- a/app/components/AboutModal.js +++ b/app/components/AboutModal.js @@ -1,36 +1,36 @@ import React from 'react'; import { Text, Linking } from 'react-native'; import PropTypes from 'prop-types'; import { Dialog, Portal, Surface, Title } from 'react-native-paper'; import KeyboardAwareDialog from './KeyBoardAwareDialog'; const DialogType = Platform.OS === 'ios' ? KeyboardAwareDialog : Dialog; import styles from '../assets/styles/blink/_AboutModal.scss'; function handleLink(event) { - Linking.openURL('https://sylkserver.com'); + Linking.openURL('https://ag-projects.com'); } const AboutModal = (props) => { return ( About Sylk Sylk mobile client is part of Sylk Suite, a set of applications for real-time communications using SIP and WebRTC specifications - handleLink()} style={styles.body}>Copyright © AG Projects + handleLink()} style={styles.link}>Copyright © AG Projects ); } AboutModal.propTypes = { show: PropTypes.bool.isRequired, close: PropTypes.func.isRequired }; export default AboutModal;