diff options
| author | Kamran Ahmed <kamranahmed.se@gmail.com> | 2018-08-29 23:25:51 +0500 |
|---|---|---|
| committer | Kamran Ahmed <kamranahmed.se@gmail.com> | 2018-08-29 23:25:51 +0500 |
| commit | 667f6920a2266142c62f21a5b827f3f39cfd562f (patch) | |
| tree | 37fc7c2ca902963560ac28fe926e04bd7251486a /src | |
| parent | Update build script (diff) | |
| download | githunt-667f6920a2266142c62f21a5b827f3f39cfd562f.tar.gz | |
Update npm scripts and launcher icon
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/launcher/index.js | 3 | ||||
| -rw-r--r-- | src/components/launcher/styles.css | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/components/launcher/index.js b/src/components/launcher/index.js index c723fcd..1c039c9 100644 --- a/src/components/launcher/index.js +++ b/src/components/launcher/index.js @@ -1,11 +1,12 @@ import React from 'react'; import './styles.css'; +import Logo from '../icons/logo'; const Launcher = () => ( <div className="launcher-body"> <div className="logo-container"> - <img src='/img/logo.svg' alt='GitHunt'/> + <Logo/> <div className="logo-text"> <h4>Loading ..</h4> <p className="text-muted">We're testing your patience</p> diff --git a/src/components/launcher/styles.css b/src/components/launcher/styles.css index 27e8823..1f32a52 100644 --- a/src/components/launcher/styles.css +++ b/src/components/launcher/styles.css @@ -11,8 +11,9 @@ background: white; } -.launcher-body .logo-container img { +.launcher-body .logo-container svg { height: 150px; + width: 150px; } .launcher-body .logo-container .logo-text h4 { |
