make rooms come in from left rather than the right

This commit is contained in:
Bruno Windels 2019-02-12 11:26:46 +01:00
parent aaea40a93d
commit 5efd92f3ec
2 changed files with 10 additions and 15 deletions

View file

@ -21,17 +21,12 @@ limitations under the License.
margin: 8px;
margin-bottom: 0;
> div {
display: flex;
flex-direction: row;
position: absolute;
right: 0;
top: 0;
height: 32px;
overflow-x: hidden;
display: flex;
flex-direction: row;
> * {
margin-right: 4px;
}
> * {
margin-right: 4px;
}
&::after {
@ -39,9 +34,9 @@ limitations under the License.
position: absolute;
width: 15px;
top: 0;
left: 0;
right: 0;
height: 100%;
background: linear-gradient(to left, rgba(242,245,248,0), rgba(242,245,248,1));
background: linear-gradient(to right, rgba(242,245,248,0), rgba(242,245,248,1));
}
}