1133 - hides scrollbar when not needed (#1134)
* 1133 - hides scrollbar when not needed * 1133 adds overflow-y:auto to asset-table-container
This commit is contained in:
parent
07a225c161
commit
973bf7e98d
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
.asset-table-container {
|
.asset-table-container {
|
||||||
// flex: 1 1 0%;
|
// flex: 1 1 0%;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: #{1000 / $base-font-size}rem;
|
width: #{1000 / $base-font-size}rem;
|
||||||
min-height: #{400 / $base-font-size}rem;
|
min-height: #{400 / $base-font-size}rem;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.sketches-table-container {
|
.sketches-table-container {
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: #{1000 / $base-font-size}rem;
|
width: #{1000 / $base-font-size}rem;
|
||||||
min-height: #{400 / $base-font-size}rem;
|
min-height: #{400 / $base-font-size}rem;
|
||||||
|
|
Loading…
Reference in a new issue