Skip to content

Commit

Permalink
Merge pull request #5498 from vector-im/luke/css-use-margin-in-room-d…
Browse files Browse the repository at this point in the history
…ir-perms

Use margin to separate "perms" in the room directory
  • Loading branch information
ara4n authored Nov 3, 2017
2 parents 5d9a1b4 + ee71c72 commit c908341
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/structures/RoomDirectory.js
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ module.exports = React.createClass({

perms = null;
if (guestRead || guestJoin) {
perms = <div className="mx_RoomDirectory_perms">{guestRead} {guestJoin}</div>;
perms = <div className="mx_RoomDirectory_perms">{guestRead}{guestJoin}</div>;
}

var topic = rooms[i].topic || '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ limitations under the License.
display: inline;
padding-left: 5px;
padding-right: 5px;
margin-right: 5px;
height: 15px;
border-radius: 11px;
background-color: $plinth-bg-color;
Expand Down

0 comments on commit c908341

Please sign in to comment.