mirror of
https://github.com/Doodle3D/Doodle3D-Core.git
synced 2024-12-22 19:13:49 +01:00
Merge branch 'master' of https://github.com/Doodle3D/Doodle3D-Core
This commit is contained in:
commit
5f7e70027a
19393
package-lock.json
generated
19393
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -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",
|
||||||
|
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user