Compare commits

..

No commits in common. "fbe0413c6a431f6931fa8e1ac53c2028c270dae5" and "29968a736c2049193bd4b03817cd4cd5bf00e3e9" have entirely different histories.

2 changed files with 29 additions and 4 deletions

View File

@ -1,6 +1,6 @@
@import "~bootstrap/scss/bootstrap.scss";
aol-map { width:100%;}
aol-map { position:absolute;width:100%;height:calc(100vh + 4rem);}
.arrow {
top: 3rem;
@ -49,11 +49,11 @@ aol-map { width:100%;}
.control-container {
position: absolute;
right: 1em;
bottom: 1em;
bottom: 8.1em;
}
.fullscreen .control-container {
bottom: 1em;
bottom: 5em;
}
switch2d3d {
@ -109,7 +109,7 @@ timespan {
bottom: 0;
left: 0;
right: 0;
background-color: rgba(255, 255, 255, 0.5);
background-color: rgba(255, 255, 255, 0.5);
}
timespan.menuVisible {

View File

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { BackButtonComponent } from './back-button.component';
describe('BackButtonComponent', () => {
let component: BackButtonComponent;
let fixture: ComponentFixture<BackButtonComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ BackButtonComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(BackButtonComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});