* Create a nwe AddressAndMapLocator which abstracts out the behavior of selecting a location * Fix the overlay causing render errors on the MapLocator by getting rid of the overlay and just using a lock indicator * Fix MapLocator zooming in to the wrong place by not framing the markers * Remove Latlng from platform and just use Location with optional accuracy * Use nested types with form-encoded POST * Fix styles on water report page
28 lines
502 B
Vue
28 lines
502 B
Vue
<style scoped>
|
|
.banner {
|
|
display: block;
|
|
}
|
|
.banner-container {
|
|
position: relative;
|
|
width: 100%;
|
|
background-color: #f76436;
|
|
overflow: hidden;
|
|
}
|
|
@include media-breakpoint-up(xs) {
|
|
.banner {
|
|
width: 100%;
|
|
}
|
|
}
|
|
@include media-breakpoint-up(xl) {
|
|
.banner {
|
|
height: 100%;
|
|
}
|
|
}
|
|
</style>
|
|
<template>
|
|
<section class="py-2 bg-primary text-white">
|
|
<div class="banner-container d-flex justify-content-center">
|
|
<img class="banner" src="/static/img/rmo/banner.jpg" />
|
|
</div>
|
|
</section>
|
|
</template>
|