Fixed transition of search overlay

This commit is contained in:
Silvio Giebl 2019-12-03 10:52:17 +01:00
parent abb7f55794
commit ab7e53b63f
1 changed files with 2 additions and 1 deletions

View File

@ -209,7 +209,7 @@
height: 0; height: 0;
background-color: rgba(0, 0, 0, 0.2); background-color: rgba(0, 0, 0, 0.2);
opacity: 0; opacity: 0;
transition: opacity ease 200ms; transition: opacity ease 200ms, width 0s 200ms, height 0s 200ms
} }
.search-active { .search-active {
@ -237,5 +237,6 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
opacity: 1; opacity: 1;
transition: opacity ease 200ms, width 0s, height 0s;
} }
} }