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 425bf36 commit 546c9faCopy full SHA for 546c9fa
src/components/0-Logo/Logo.css
@@ -1,5 +1,5 @@
1
.logo {
2
- /* todo: fix rewriteUrl error and use url(./logo.svg) */
+ background-image: url("./logo.svg");
3
background-size: 200px 200px;
4
width: 200px;
5
height: 200px;
src/components/0-Logo/Logo.js
@@ -3,10 +3,7 @@ import styles from './Logo.css';
import React, { Component } from 'react';
export default class Logo extends Component {
6
-
7
- // todo: fix rewriteUrl error and use url(./logo.svg) in Logo.css
8
render() {
9
- return <div className={styles.logo} style={{'background-image': 'url("./logo.svg")'}} />;
+ return <div className={styles.logo} />;
10
}
11
12
};
0 commit comments