Compare commits

...

3 Commits

Author SHA1 Message Date
Mark van der Wal fbe0413c6a Merge branch 'feature/AW-2268' into develop
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details
2021-05-18 13:05:16 +02:00
Mark van der Wal 115f53e93c AW-2268 fix .fullscreen .control-container 2021-05-18 09:49:50 +02:00
Mark van der Wal ca40ca0927 renamed package guard and added it to public api 2021-05-17 14:23:44 +02:00
2 changed files with 4 additions and 29 deletions

View File

@ -1,6 +1,6 @@
@import "~bootstrap/scss/bootstrap.scss";
aol-map { position:absolute;width:100%;height:calc(100vh + 4rem);}
aol-map { width:100%;}
.arrow {
top: 3rem;
@ -49,11 +49,11 @@ aol-map { position:absolute;width:100%;height:calc(100vh + 4rem);}
.control-container {
position: absolute;
right: 1em;
bottom: 8.1em;
bottom: 1em;
}
.fullscreen .control-container {
bottom: 5em;
bottom: 1em;
}
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

@ -1,25 +0,0 @@
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();
});
});