add animation when adding a room

This commit is contained in:
Bruno Windels 2019-02-12 12:16:56 +01:00
parent 03c491416e
commit 2315e4bfb4
2 changed files with 34 additions and 4 deletions

View file

@ -38,5 +38,17 @@ limitations under the License.
height: 100%;
background: linear-gradient(to right, rgba(242,245,248,0), rgba(242,245,248,1));
}
.mx_RoomBreadcrumbs_animate {
margin-left: 0;
transition: transform 0.3s, width 0.3s;
width: 32px;
transform: scale(1);
}
.mx_RoomBreadcrumbs_preAnimate {
width: 0;
transform: scale(0);
}
}