Commit 6336fbad by muhsin

fixed maps

parent 6825ef55
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ContactComponent } from './contact.component';
describe('ContactComponent', () => {
let component: ContactComponent;
let fixture: ComponentFixture<ContactComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ContactComponent ],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ContactComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-contact',
templateUrl: './contact.component.html',
styleUrls: ['./contact.component.scss'],
})
export class ContactComponent implements OnInit {
constructor() { }
ngOnInit() {}
}
.nearby_map {
width: 100%;
height: 100vh;
height: 100%;
.overlay {
position: absolute;
top: 0px;
......@@ -75,7 +75,7 @@
}
// Box.
& + label:before {
content: '';
content: "";
margin-right: 10px;
display: inline-block;
vertical-align: text-top;
......@@ -102,7 +102,7 @@
}
// Checkmark. Could be replaced with an image
&:checked + label:after {
content: '';
content: "";
position: absolute;
left: 6px;
top: 11px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment