Skip to content

Commit 11e58be

Browse files
Remove unneccessary scrollbar
1 parent c57177e commit 11e58be

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
.DS_Store
2121
.AppleDouble
2222
.LSOverride
23+
build/
2324

2425
# Icon must end with two \r
2526
Icon

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const spinner = new Spinner('running app... %s');
88
spinner.setSpinnerString('|/-\\');
99

1010
program
11-
.version('0.1.7', '-v, --version, -V')
11+
.version('1.0.0', '-v, --version, -V')
1212
.description('An application for prototyping React application.');
1313

1414
program

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "react_proto",
3-
"version": "0.1.7",
2+
"name": "react-proto",
3+
"version": "1.0.0",
44
"description": "An application for prototyping React components.",
55
"main": "main.js",
66
"homepage": "https://cs-eevee.github.io/react-proto/",
@@ -55,7 +55,6 @@
5555
"dev": "cross-env NODE_ENV=development webpack --config webpack.config.development.js",
5656
"electron": "cross-env NODE_ENV=development electron .",
5757
"build": "cross-env NODE_ENV=production webpack --config webpack.config.production.js",
58-
"prod-electron": "cross-env NODE_ENV=production electron .",
5958
"build-bin": "electron-builder -mwl",
6059
"test": "cross-env NODE_ENV=test jest",
6160
"linter": "eslint src"

src/public/styles/style.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ LEFT COLUMN
8787
flex-direction: column-reverse;
8888
display: flex;
8989
max-height: 80%;
90-
overflow-y: scroll;
90+
overflow-y: auto;
9191
padding: 1%;
9292
}
9393

@@ -111,8 +111,8 @@ h1 {
111111
display: flex;
112112
flex-direction: column;
113113
flex: 1;
114-
overflow-x: scroll;
115-
overflow-y: scroll;
114+
overflow-x: auto;
115+
overflow-y: auto;
116116
}
117117

118118
.main-header {
@@ -137,7 +137,7 @@ h1 {
137137
background: #fff;
138138
flex: 1;
139139
width: 100%;
140-
overflow: scroll;
140+
overflow: auto;
141141
display: flex;
142142
background-color: #1e1e1e;
143143
/* justify-content: center;
@@ -217,7 +217,7 @@ RIGHT COLUMN
217217

218218
.chips {
219219
height: 55%;
220-
overflow: scroll;
220+
overflow: auto;
221221
}
222222

223223
/* Sortable tree sorting */
@@ -244,7 +244,7 @@ div.rst__rowContents {
244244
}
245245

246246
.rst_tree {
247-
overflow: scroll;
247+
overflow: auto;
248248
}
249249

250250
.rst__rowLabel {

0 commit comments

Comments
 (0)