We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d5a14f commit a527b4fCopy full SHA for a527b4f
src/common/components/utils/Navigation.js
@@ -31,8 +31,20 @@ class Navigation extends Component {
31
<Navbar staticTop>
32
<Grid>
33
<Navbar.Header>
34
- <Link className="navbar-brand" to="/" >
35
- Logo
+ <Link
+ className="navbar-brand"
36
+ to="/"
37
+ style={{
38
+ padding: 5,
39
+ }}
40
+ >
41
+ <img
42
+ src="/img/logo.png"
43
44
+ display: 'block',
45
+ height: '100%',
46
47
+ />
48
</Link>
49
</Navbar.Header>
50
src/public/img/favicon.ico
-361 KB
src/server/middlewares/index.js
@@ -25,7 +25,7 @@ export default ({ app }) => {
25
}
26
27
// favicon
28
- app.use(favicon(path.join(__dirname, '../../public/img/favicon.ico')));
+ app.use(favicon(path.join(__dirname, '../../public/img/logo.png')));
29
30
// log request
app.use(morgan);
0 commit comments