This commit is contained in:
Emanuel Mutschlechner
2018-08-30 01:21:38 +02:00
commit c7c7694ac4
32 changed files with 23196 additions and 0 deletions

27
resources/sass/index.scss vendored Normal file
View File

@@ -0,0 +1,27 @@
.map-container {
position: relative;
height: 300px;
@media (min-width: 992px) {
height: 450px;
}
&.fade {
opacity: 0;
transition: opacity 195ms ease-out;
&.in {
opacity: 1;
transition: opacity 225ms ease-in;
}
}
> .map {
height: inherit;
}
}
// Fix Mapkit canvas
.mk-map-view {
> .syrup-canvas {
margin-left: -50%;
}
}