Two small bugfixes.

This commit is contained in:
Daan Vanden Bosch 2019-07-03 13:29:07 +02:00
parent f06d6d22e8
commit 27fdefe74a
2 changed files with 3 additions and 1 deletions

View File

@ -48,6 +48,7 @@ export class Renderer {
this.renderer.setSize(width, height);
this.camera.aspect = width / height;
this.camera.updateProjectionMatrix();
this.schedule_render();
}
protected schedule_render = () => {

View File

@ -5,12 +5,13 @@
height: 100%;
padding: 0;
margin: 0;
overflow: auto;
overflow-y: scroll;
list-style-type: none;
& > li {
cursor: pointer;
padding: 2px 5px;
white-space: nowrap;
&:hover {
color: lighten(@primary-color, 30%);