diff options
author | Nad Chishtie <n.chishtie@gmail.com> | 2019-08-16 14:23:15 -0700 |
---|---|---|
committer | Jorik Schellekens <joriks@matrix.org> | 2019-08-28 15:59:54 +0100 |
commit | 4fe0c9eb1c00b6b7c694989f1c91e672c0aa3d72 (patch) | |
tree | d563d747fdb3e157305ba1f33cfcbe643ead7739 | |
parent | Polish input selection (diff) | |
download | synapse-4fe0c9eb1c00b6b7c694989f1c91e672c0aa3d72.tar.xz |
Polish titles in setup complete
3 files changed, 10 insertions, 5 deletions
diff --git a/synapse_topology/webui/src/js/components/DelegationSampleConfig.jsx b/synapse_topology/webui/src/js/components/DelegationSampleConfig.jsx index 6013246464..cc45bab971 100644 --- a/synapse_topology/webui/src/js/components/DelegationSampleConfig.jsx +++ b/synapse_topology/webui/src/js/components/DelegationSampleConfig.jsx @@ -19,7 +19,7 @@ export default ({ if (delegationType == DELEGATION_TYPES.DNS) { return <ContentWrapper> - <h1>ConfigureDelegation</h1> + <h1 className='setupCompleteTitle'>Configure Delegation</h1> <p> You will need to add the following SRV record to your DNS zone. </p> @@ -34,7 +34,7 @@ export default ({ } else { return <ContentWrapper> - <h1>Configure delegation</h1> + <h1 className='setupCompleteTitle'>Configure delegation</h1> <p> The delegation configuration needs to take place outside the installer. </p> @@ -60,4 +60,4 @@ export default ({ } -} \ No newline at end of file +} diff --git a/synapse_topology/webui/src/js/components/ReverseProxySampleConfig.jsx b/synapse_topology/webui/src/js/components/ReverseProxySampleConfig.jsx index 034b79f388..92aee9e51c 100644 --- a/synapse_topology/webui/src/js/components/ReverseProxySampleConfig.jsx +++ b/synapse_topology/webui/src/js/components/ReverseProxySampleConfig.jsx @@ -8,7 +8,7 @@ import { REVERSE_PROXY_TYPES } from '../actions/constants'; export default ({ proxyType, sampleConfig, fileName, onClick }) => { return <ContentWrapper> - <h1>Configure the ReverseProxy</h1> + <h1 className='setupCompleteTitle'>Configure the ReverseProxy</h1> <p> It's time for you to setup the reverse proxy outside of this installer. </p> @@ -33,4 +33,4 @@ export default ({ proxyType, sampleConfig, fileName, onClick }) => { <DownloadOrCopy content={sampleConfig} fileName={fileName} onClick={onClick} /> </ContentWrapper>; -} \ No newline at end of file +} diff --git a/synapse_topology/webui/src/scss/main.scss b/synapse_topology/webui/src/scss/main.scss index b497c54639..db1a1a34cf 100644 --- a/synapse_topology/webui/src/scss/main.scss +++ b/synapse_topology/webui/src/scss/main.scss @@ -236,3 +236,8 @@ input[type=checkbox] { margin-left: 0.6rem; font-size: 0.6rem; } + +.setupCompleteTitle { + margin-left: 0; + margin-top: 0; +} |