Skip to content

Instantly share code, notes, and snippets.

View dcyoung-dev's full-sized avatar
🥞
Full Stacking

David Young dcyoung-dev

🥞
Full Stacking
View GitHub Profile
@dcyoung-dev
dcyoung-dev / app.component.html
Created April 14, 2019 21:29 — forked from RajaShanmugamJM/app.component.ts
Simple Google Map Integration with Angular.
<div id="map">
<h4>From map</h4>
</div>
<div id="loc_details">
<h4>Current Location</h4>
<p>
Lat : {{geoLoc.lat }}
</p>
<p>
@mixin for-size($range) {
$phone-upper-boundary: 37.5rem;
$tablet-portrait-upper-boundary: 56.25rem;
$tablet-landscape-upper-boundary: 75rem;
$desktop-upper-boundary: 112.5rem;
@if $range == phone-only {
@media (max-width: #{$phone-upper-boundary - 1}) { @content; }
} @else if $range == tablet-portrait-up {
@media (min-width: $phone-upper-boundary) { @content; }