Fix width
FarmMaps.Develop/FarmMapsLib/develop This commit looks good Details

pull/1/head
Willem Dantuma 2020-01-13 14:43:02 +01:00
parent 40429a67ef
commit f71d96be6e
1 changed files with 10 additions and 4 deletions

View File

@ -4,7 +4,7 @@
width: 100%;
left: 0px;
top:50%;
transition: left 0.3s, top 0.3s;
transition: left 0.2s, top 0.2s;
background-color: white;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@ -26,7 +26,7 @@
}
.arrow i {
transition: transform 0.3s;
transition: transform 0.2s;
}
.collapsed .arrow i {
@ -101,7 +101,7 @@ div.resizegrip > span {
.side-panel.left {
top:0px;
width: 22rem;
width: 80%;
height:100%;
left:0px;
}
@ -110,4 +110,10 @@ div.resizegrip > span {
width: 22rem;
left:-24rem;
height:100%;
}
}
@media screen and (min-width:44rem) {
.side-panel.left {
width:22rem;
}
}