Skip to content

Commit 45d21c6

Browse files
Settings overflow on mobile devices fix, version info add
1 parent 74d1639 commit 45d21c6

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iknow-entity-browser",
3-
"version": "0.8.6",
3+
"version": "0.8.7",
44
"description": "Visualizer for iKnow entities",
55
"main": "gulpfile.babel.js",
66
"scripts": {

src/static/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ <h1>Tabular View Settings</h1>
171171
<div>
172172
<button id="settings.resetSettings">Reset Settings</button>
173173
</div>
174+
<div class="footer">
175+
iKnow Entity Browser v<!-- @echo package.version -->
176+
</div>
174177
</div>
175178
</div>
176179
</body>

src/static/scss/settings.scss

+8-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@
1010
box-sizing: border-box;
1111
background: white;
1212
padding: $defaultPadding;
13-
14-
&.active {
15-
16-
}
13+
overflow: auto;
1714

1815
&:not(.active) {
1916

@@ -29,6 +26,13 @@
2926

3027
}
3128

29+
.footer {
30+
text-align: right;
31+
font-size: 8pt;
32+
color: gray;
33+
padding: 0 2px;
34+
}
35+
3236
}
3337

3438
#settings\.tabularColumns {

0 commit comments

Comments
 (0)