Commit f3c0ebcd authored by Theopolisme's avatar Theopolisme
Browse files

Make transition smoother

`transition: all` was attempting to transition both the height and the
bottom at the same time, which confused the heck out of Chrome
(understandably, perhaps).
parent 23f1ec58
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -97,7 +97,7 @@ h2 {
  margin: 0px 10px;
  padding: 3px 16px 5px;
  background-color: rgba(255,255,255,0.7);
  transition: all 0.5s ease-in-out;
  transition: bottom 0.5s;
}

.map-active #controls {