36 lines
390 B
CSS
36 lines
390 B
CSS
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
}
|
|
|
|
.leaflet-popup-content {
|
|
/*font-size: 13pt;*/
|
|
}
|
|
|
|
#map {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
#dash {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.buttonscontainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
}
|
|
|
|
.buttonscontainer > button {
|
|
margin: 3px;
|
|
width: 100%;
|
|
}
|