aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Err.js
diff options
context:
space:
mode:
authorRyan Mehri <[email protected]>2020-05-26 10:20:15 -0600
committerGitHub <[email protected]>2020-05-26 10:20:15 -0600
commit8b69751d9276a99d5150e0efac0ccd16a5c970c6 (patch)
treef7851f60131b77676102aaf2c019b1f37d28f1c3 /frontend/src/components/Err.js
parentMerge pull request #34 from jackyzha0/firebase (diff)
parentfix coderenderer not loading all langs (diff)
downloadctrl-v-8b69751d9276a99d5150e0efac0ccd16a5c970c6.tar.xz
ctrl-v-8b69751d9276a99d5150e0efac0ccd16a5c970c6.zip
Merge pull request #35 from jackyzha0/fixing-html
various fixes
Diffstat (limited to 'frontend/src/components/Err.js')
-rw-r--r--frontend/src/components/Err.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/src/components/Err.js b/frontend/src/components/Err.js
index dc78398..c87f6a8 100644
--- a/frontend/src/components/Err.js
+++ b/frontend/src/components/Err.js
@@ -4,7 +4,6 @@ import styled, { css } from 'styled-components'
const ErrMsg = styled.p`
display: inline;
font-weight: 700;
- margin-left: 2em;
color: #ff3333;
opacity: 0;
transition: opacity 0.3s cubic-bezier(.25,.8,.25,1);
@@ -23,7 +22,7 @@ class Error extends React.Component {
this.state = {
active: false,
- msg: '',
+ msg: '&nbsp;',
};
this.showMessage = this.showMessage.bind(this);