Spaces:
Sleeping
Sleeping
File size: 370 Bytes
d4648ea |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
.geolocation {
position: relative;
.map {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.info {
position: absolute;
bottom: 0;
left: 0;
background: var(--darker-background);
padding: 10px;
color: var(--foreground);
width: 100%;
border-top: 1px solid var(--border);
z-index: 1000;
}
}
|