aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Err.js
diff options
context:
space:
mode:
authorjackyzha0 <[email protected]>2020-05-25 23:05:04 -0700
committerjackyzha0 <[email protected]>2020-05-25 23:05:04 -0700
commit0568ee72bd05ed16cf5250a444d936821c42b524 (patch)
treef9f1b1fcc58a9b5658579cf68e3025f15719abf3 /frontend/src/components/Err.js
parentadd icon, fix title, add content to meta (diff)
downloadctrl-v-0568ee72bd05ed16cf5250a444d936821c42b524.tar.xz
ctrl-v-0568ee72bd05ed16cf5250a444d936821c42b524.zip
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);