diff --git a/app/assets/styles/blink/_AboutModal.scss b/app/assets/styles/blink/_AboutModal.scss index 6bee68a..a5fe2cc 100644 --- a/app/assets/styles/blink/_AboutModal.scss +++ b/app/assets/styles/blink/_AboutModal.scss @@ -1,16 +1,17 @@ .title { padding: 5px; font-size: 36px; text-align: center; } .body { padding: 10px; font-size: 16px; text-align: center; } .container { - padding: 40px; - margin: 10px; + padding: 20px; + margin: 0px; + padding-bottom: 40px; } diff --git a/app/components/AboutModal.js b/app/components/AboutModal.js index 21e6525..4f03b25 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'); } const AboutModal = (props) => { return ( About Sylk - Sylk is the client part of Sylk Suite, a set of - applications for real-time communications using SIP and WebRTC protocols. - handleLink()} style={styles.body}>https://sylkserver.com + 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 ); } AboutModal.propTypes = { show: PropTypes.bool.isRequired, close: PropTypes.func.isRequired }; export default AboutModal;