fix room header margin issue with hidden back button
This commit is contained in:
parent
868b1a1045
commit
4783e03871
1 changed files with 5 additions and 2 deletions
|
@ -364,8 +364,11 @@ a {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.RoomHeader > :not(:first-child) {
|
.RoomHeader > :not(:last-child) {
|
||||||
margin-left: 8px;
|
/* use margin-right because the first item,
|
||||||
|
button.back might be hidden and then we don't
|
||||||
|
want a margin-left on the second item*/
|
||||||
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.back {
|
button.back {
|
||||||
|
|
Reference in a new issue