diff --git a/src/app/app.js b/src/app/app.js index b8712b7c5..5c7155f28 100644 --- a/src/app/app.js +++ b/src/app/app.js @@ -1,7 +1,8 @@ import React, { Component } from 'react'; import { BrowserRouter, Route } from 'react-router-dom'; import { Checkbox } from 'stremio-common'; -import Icon from 'stremio-icons/dom' +import Icon from 'stremio-icons/dom'; +import styles from './styles'; class App extends Component { render() { diff --git a/src/app/styles.less b/src/app/styles.less new file mode 100644 index 000000000..2572717bf --- /dev/null +++ b/src/app/styles.less @@ -0,0 +1,17 @@ +@import "stremio-colors"; + +* { + margin: 0px; + padding: 0px; + border: none; + list-style: none; + user-select: none; +} + +body, html { + height: 100%; + cursor: default; + overflow: hidden; + -webkit-font-smoothing: subpixel-antialiased; + background-color: @colorbgmain; +}