This commit is contained in:
Casper Lamboo 2021-05-05 18:58:25 +02:00
commit 5f7e70027a
3 changed files with 14801 additions and 4612 deletions

19393
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -37,7 +37,6 @@
"lodash": "^4.17.4", "lodash": "^4.17.4",
"memoizee": "^0.3.9", "memoizee": "^0.3.9",
"normalize-wheel": "^1.0.1", "normalize-wheel": "^1.0.1",
"pouchdb": "^6.3.4",
"proptypes": "^1.1.0", "proptypes": "^1.1.0",
"raf": "^3.4.0", "raf": "^3.4.0",
"ramda": "^0.21.0", "ramda": "^0.21.0",
@ -55,8 +54,7 @@
"semver": "^5.4.1", "semver": "^5.4.1",
"shortid": "^2.2.8", "shortid": "^2.2.8",
"three": "^0.88.0", "three": "^0.88.0",
"three-js-csg": "github:Doodle3D/three-js-csg", "three-js-csg": "github:Doodle3D/three-js-csg"
"valid-url": "^1.0.9"
}, },
"devDependencies": { "devDependencies": {
"babel-cli": "6.24.1", "babel-cli": "6.24.1",
@ -99,8 +97,7 @@
"webpack-bundle-analyzer": "^2.9.1", "webpack-bundle-analyzer": "^2.9.1",
"webpack-cordova-plugin": "^0.1.6", "webpack-cordova-plugin": "^0.1.6",
"webpack-dev-server": "^2.9.4", "webpack-dev-server": "^2.9.4",
"worker-loader": "^1.1.0", "worker-loader": "^1.1.0"
"yml-loader": "^2.1.0"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -8,11 +8,12 @@ const styles = {
top: '0px', top: '0px',
right: '15%', right: '15%',
width: '19%', width: '19%',
backgroundImage: `url("${doodleSignImageURL}")`,
maxWidth: '290px',
height: '140px',
backgroundSize: '100%',
backgroundRepeat: 'no-repeat',
pointerEvents: 'none', // enable clicking through logo pointerEvents: 'none', // enable clicking through logo
'& img': {
width: '100%',
maxWidth: '290px'
}
}, },
'@media (max-width: 555px)': { '@media (max-width: 555px)': {
container: { container: {
@ -22,8 +23,6 @@ const styles = {
}; };
const Logo = ({ classes }) => ( const Logo = ({ classes }) => (
<div className={classes.container}> <div className={classes.container} />
<img src={doodleSignImageURL} />
</div>
); );
export default injectSheet(styles)(Logo); export default injectSheet(styles)(Logo);