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

flexbox fix

parent 0dc56357
...@@ -6,3 +6,4 @@ lint.xml ...@@ -6,3 +6,4 @@ lint.xml
test-browser/reports/* test-browser/reports/*
babelify-src babelify-src
docs/_build 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 @@ ...@@ -14,8 +14,6 @@
], ],
"main": "./src/index.js", "main": "./src/index.js",
"dependencies": { "dependencies": {
"bignumber.js": "^4.0.2",
"csjs-inject": "^1.0.1",
"which": "^1.2.10" "which": "^1.2.10"
}, },
"devDependencies": { "devDependencies": {
...@@ -85,37 +83,21 @@ ...@@ -85,37 +83,21 @@
}, },
"browserify": { "browserify": {
"transform": [ "transform": [
[ ["babelify", {
"babelify", "plugins": [
{ ["fast-async", {
"plugins": [ "runtimePatten": null,
[ "compiler": {
"fast-async", "promises": true,
{ "es7": true,
"runtimePatten": null, "noRuntime": true,
"compiler": { "wrapAwait": true
"promises": true, }
"es7": true, }], "transform-object-assign"
"noRuntime": true, ]
"wrapAwait": true }],
} ["yo-yoify"],
} ["babelify", { "presets": ["es2015"] }]
],
"transform-object-assign"
]
}
],
[
"yo-yoify"
],
[
"babelify",
{
"presets": [
"es2015"
]
}
]
] ]
} }
} }
...@@ -16,19 +16,19 @@ var css = csjs` ...@@ -16,19 +16,19 @@ var css = csjs`
.stepButtons { .stepButtons {
width: 100%; width: 100%;
display: flex; display: flex;
justify-content: space-between; justify-content: center
} }
.stepButton extends ${styles.button} { .stepButton extends ${styles.button} {
width: 23%; width: 25%;
min-width: 30px; min-width: 30px;
} }
.jumpButtons { .jumpButtons {
width: 100%; width: 100%;
display: flex; display: flex;
justify-content: space-between; justify-content: center
} }
.jumpButton extends ${styles.button} { .jumpButton extends ${styles.button} {
width: 32%; width: 33%;
min-width: 30px; min-width: 30px;
} }
.navigator:hover { .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