diff --git a/src/App.css b/src/App.css index 7bf65adf..42463681 100644 --- a/src/App.css +++ b/src/App.css @@ -1,14 +1,4 @@ .screenshot { - image-rendering: pixelated; - height: 100%; -} - -#overlay { - background-color: black; - height: 100%; - left: 0; - opacity: 0.9; - position: fixed; - top: 0; - width: 100%; + image-rendering: pixelated; + height: 100%; } diff --git a/src/App.js b/src/App.js index cd90d508..fdd2612c 100644 --- a/src/App.js +++ b/src/App.js @@ -1,7 +1,6 @@ import React from "react"; import { List, WindowScroller } from "react-virtualized"; import skins from "./skins.json"; -import Featured from "./Featured"; import "./App.css"; const hashes = Object.keys(skins); diff --git a/src/Featured.js b/src/Featured.js deleted file mode 100644 index bdb65e9c..00000000 --- a/src/Featured.js +++ /dev/null @@ -1,28 +0,0 @@ -import React from "react"; -import Webamp from "webamp"; - -export default class Featured extends React.Component { - constructor() { - super(); - } - - componentDidMount() { - /* - this._webamp = new Webamp({ - initialSkin: { - url: this.props.skinUrl - } - }); - this._webamp.renderWhenReady(this.player); - */ - } - - render() { - return ( -
-
(this.player = node)} /> - -
- ); - } -}