12 lines
168 B
CSS
12 lines
168 B
CSS
/* Mobile-first approach */
|
|
.map-container {
|
|
height: 100vh;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Tablet and larger */
|
|
@media (min-width: 768px) {
|
|
.sidebar {
|
|
width: 350px;
|
|
}
|
|
} |