Commit 584bf3ff authored by ninabreznik's avatar ninabreznik Committed by yann300

flexbox fix

parent 0dc56357
......@@ -6,3 +6,4 @@ lint.xml
test-browser/reports/*
babelify-src
docs/_build
package-lock.json
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -14,8 +14,6 @@
],
"main": "./src/index.js",
"dependencies": {
"bignumber.js": "^4.0.2",
"csjs-inject": "^1.0.1",
"which": "^1.2.10"
},
"devDependencies": {
......@@ -85,37 +83,21 @@
},
"browserify": {
"transform": [
[
"babelify",
{
"plugins": [
[
"fast-async",
{
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}
],
"transform-object-assign"
]
}
],
[
"yo-yoify"
],
[
"babelify",
{
"presets": [
"es2015"
]
}
]
["babelify", {
"plugins": [
["fast-async", {
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}], "transform-object-assign"
]
}],
["yo-yoify"],
["babelify", { "presets": ["es2015"] }]
]
}
}
......@@ -16,19 +16,19 @@ var css = csjs`
.stepButtons {
width: 100%;
display: flex;
justify-content: space-between;
justify-content: center
}
.stepButton extends ${styles.button} {
width: 23%;
width: 25%;
min-width: 30px;
}
.jumpButtons {
width: 100%;
display: flex;
justify-content: space-between;
justify-content: center
}
.jumpButton extends ${styles.button} {
width: 32%;
width: 33%;
min-width: 30px;
}
.navigator:hover {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment