Skip to content

Commit

Permalink
Remove unneccessary scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
refinedblessing committed Aug 21, 2018
1 parent c57177e commit 11e58be
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
1 change: 1 addition & 0 deletions .npmignore
Expand Up @@ -20,6 +20,7 @@
.DS_Store
.AppleDouble
.LSOverride
build/

# Icon must end with two \r
Icon
Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -8,7 +8,7 @@ const spinner = new Spinner('running app... %s');
spinner.setSpinnerString('|/-\\');

program
.version('0.1.7', '-v, --version, -V')
.version('1.0.0', '-v, --version, -V')
.description('An application for prototyping React application.');

program
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "react_proto",
"version": "0.1.7",
"name": "react-proto",
"version": "1.0.0",
"description": "An application for prototyping React components.",
"main": "main.js",
"homepage": "https://cs-eevee.github.io/react-proto/",
Expand Down Expand Up @@ -55,7 +55,6 @@
"dev": "cross-env NODE_ENV=development webpack --config webpack.config.development.js",
"electron": "cross-env NODE_ENV=development electron .",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.production.js",
"prod-electron": "cross-env NODE_ENV=production electron .",
"build-bin": "electron-builder -mwl",
"test": "cross-env NODE_ENV=test jest",
"linter": "eslint src"
Expand Down
12 changes: 6 additions & 6 deletions src/public/styles/style.css
Expand Up @@ -87,7 +87,7 @@ LEFT COLUMN
flex-direction: column-reverse;
display: flex;
max-height: 80%;
overflow-y: scroll;
overflow-y: auto;
padding: 1%;
}

Expand All @@ -111,8 +111,8 @@ h1 {
display: flex;
flex-direction: column;
flex: 1;
overflow-x: scroll;
overflow-y: scroll;
overflow-x: auto;
overflow-y: auto;
}

.main-header {
Expand All @@ -137,7 +137,7 @@ h1 {
background: #fff;
flex: 1;
width: 100%;
overflow: scroll;
overflow: auto;
display: flex;
background-color: #1e1e1e;
/* justify-content: center;
Expand Down Expand Up @@ -217,7 +217,7 @@ RIGHT COLUMN

.chips {
height: 55%;
overflow: scroll;
overflow: auto;
}

/* Sortable tree sorting */
Expand All @@ -244,7 +244,7 @@ div.rst__rowContents {
}

.rst_tree {
overflow: scroll;
overflow: auto;
}

.rst__rowLabel {
Expand Down

0 comments on commit 11e58be

Please sign in to comment.