Newer
Older
pre-www / src / assets / css / components / map.css
.map-container{
    @apply aspect-square md:aspect-[4/3] lg:md:aspect-[16/9] mb-lg;
    .map{
        @apply h-full z-10;
        .leaflet-popup{
            .leaflet-popup-content-wrapper{
                @apply shadow-none rounded-none;
                .leaflet-popup-content{
                    @apply m-2.5 font-sans;
                    a{
                        @apply text-black underline;
                    }
                }
            }
            .leaflet-popup-tip-container, .leaflet-popup-close-button{
                @apply hidden;
            }
        }
    }
}