Compare commits
No commits in common. "fbe0413c6a431f6931fa8e1ac53c2028c270dae5" and "29968a736c2049193bd4b03817cd4cd5bf00e3e9" have entirely different histories.
fbe0413c6a
...
29968a736c
@ -1,6 +1,6 @@
|
|||||||
@import "~bootstrap/scss/bootstrap.scss";
|
@import "~bootstrap/scss/bootstrap.scss";
|
||||||
|
|
||||||
aol-map { width:100%;}
|
aol-map { position:absolute;width:100%;height:calc(100vh + 4rem);}
|
||||||
|
|
||||||
.arrow {
|
.arrow {
|
||||||
top: 3rem;
|
top: 3rem;
|
||||||
@ -49,11 +49,11 @@ aol-map { width:100%;}
|
|||||||
.control-container {
|
.control-container {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 1em;
|
right: 1em;
|
||||||
bottom: 1em;
|
bottom: 8.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fullscreen .control-container {
|
.fullscreen .control-container {
|
||||||
bottom: 1em;
|
bottom: 5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch2d3d {
|
switch2d3d {
|
||||||
|
@ -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();
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user