You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
528 B
38 lines
528 B
|
|
.leaflet {
|
|
background-color: cornsilk;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.leaflet-header {
|
|
display: flex;
|
|
align-content: center;
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
.leaflet-icon {
|
|
rotate: 180deg;
|
|
transition: rotate 250ms ease-in;
|
|
}
|
|
|
|
.leaflet-icon-expanded {
|
|
rotate: 270deg;
|
|
}
|
|
|
|
.leaflet-body {
|
|
padding: 5px;
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.leaflet-body-expanded {
|
|
height: auto;
|
|
}
|
|
|
|
|