This repository was archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed commits: [26c35c4] ☘ Update all dependencies [db8cebe] Add babel-runtime to reduce the runtime boilerplate code [45add79] Why fixed doesn't work? [d92cdcb] Add devices detection library [cd96784] chore(package): update jsdom to version 8.4.1 https://greenkeeper.io/ [d0ab2e1] Add scrolling motion w/ mobile support examples [aa1f103] Add a solid foundation for scrolling motions [dcee3df] chore(package): update react-router to version 2.4.0 https://greenkeeper.io/ [daeebe8] chore(package): update babel-plugin-module-alias to version 1.4.0 https://greenkeeper.io/
- Loading branch information
1 parent
a3deaae
commit b060639
Showing
21 changed files
with
104 additions
and
257 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import combineReducers from 'redux/lib/combineReducers'; | ||
import arsenal from './ui/Motions/reducer'; | ||
|
||
export default combineReducers({ | ||
arsenal, | ||
application(state = "Initial State") { | ||
return state; | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,9 @@ | ||
import React from 'react'; | ||
import {Router, Route, IndexRoute} from 'react-router'; | ||
import {Router, Route/*, IndexRoute*/} from 'react-router'; | ||
import { | ||
Application, | ||
Motions, | ||
MotionsList, | ||
Motion, | ||
} from './ui'; | ||
|
||
export default history => <Router history={history}> | ||
<Route path="/" component={Application}> | ||
<Route path="motions" component={Motions}> | ||
<IndexRoute component={MotionsList}/> | ||
<Route path=":name" component={Motion}/> | ||
</Route> | ||
</Route> | ||
<Route path="/" component={Application}/> | ||
</Router>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1 @@ | ||
@import 'common/styles/globals.css'; | ||
|
||
:root { | ||
--cover-image: images/intro-background-full.png; | ||
} | ||
|
||
.container { | ||
/* position: absolute 0 0; */ | ||
padding: 1rem; | ||
/* width: width(var(--cover-image)); */ | ||
/* height: height(var(--cover-image)); */ | ||
/* background: resolve(var(--cover-image)); */ | ||
/* background-size: size(var(--cover-image)); */ | ||
/*composes: absolute-full from '../../styles/helpers.css';*/ | ||
} | ||
|
||
.navigation { | ||
clear: fix; | ||
padding-bottom: 1rem; | ||
border-bottom: 1px solid gray; | ||
|
||
& :any-link { | ||
color: gray; | ||
text-decoration: none; | ||
} | ||
|
||
& .active { | ||
font-weight: bold; | ||
} | ||
|
||
& a:not(:last-child) { | ||
margin-right: 1rem; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
export Application from './Application'; | ||
export Motions from './Motions'; | ||
export MotionsList from './Motions/List'; | ||
export Motion from './Motion'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.