mirror of
https://github.com/ilyakooo0/urbit.git
synced 2025-01-03 20:52:23 +03:00
Merge branch 'mp/os1/invite-search-blend' (#2400)
* origin/mp/os1/invite-search-blend: invite search: proper padding, blending of group name Signed-off-by: Jared Tobin <jared@tlon.io>
This commit is contained in:
commit
8b6710c360
@ -205,7 +205,7 @@ export class InviteSearch extends Component {
|
||||
) {
|
||||
let groupHeader =
|
||||
state.searchResults.groups.length > 0 ? (
|
||||
<p className="f9 gray2 ph3">Groups</p>
|
||||
<p className="f9 gray2 ph3 pb2">Groups</p>
|
||||
) : (
|
||||
""
|
||||
);
|
||||
@ -222,11 +222,11 @@ export class InviteSearch extends Component {
|
||||
<li
|
||||
key={group}
|
||||
className={
|
||||
"list mono mix-blend-diff white f8 pv2 ph3 pointer" +
|
||||
"list mono white-d f8 pv2 ph3 pointer" +
|
||||
" hover-bg-gray4 hover-bg-gray1-d"
|
||||
}
|
||||
onClick={e => this.addGroup(group)}>
|
||||
{group}
|
||||
onClick={() => this.addGroup(group)}>
|
||||
<span className="mix-blend-diff white">{group}</span>
|
||||
</li>
|
||||
);
|
||||
});
|
||||
|
@ -205,7 +205,7 @@ export class InviteSearch extends Component {
|
||||
) {
|
||||
let groupHeader =
|
||||
state.searchResults.groups.length > 0 ? (
|
||||
<p className="f9 gray2 ph3">Groups</p>
|
||||
<p className="f9 gray2 ph3 pb2">Groups</p>
|
||||
) : (
|
||||
""
|
||||
);
|
||||
@ -222,11 +222,11 @@ export class InviteSearch extends Component {
|
||||
<li
|
||||
key={group}
|
||||
className={
|
||||
"list mono mix-blend-diff white f8 pv2 ph3 pointer" +
|
||||
"list mono white-d f8 pv2 ph3 pointer" +
|
||||
" hover-bg-gray4 hover-bg-gray1-d"
|
||||
}
|
||||
onClick={e => this.addGroup(group)}>
|
||||
{group}
|
||||
onClick={() => this.addGroup(group)}>
|
||||
<span className="mix-blend-diff white">{group}</span>
|
||||
</li>
|
||||
);
|
||||
});
|
||||
|
@ -205,7 +205,7 @@ export class InviteSearch extends Component {
|
||||
) {
|
||||
let groupHeader =
|
||||
state.searchResults.groups.length > 0 ? (
|
||||
<p className="f9 gray2 ph3">Groups</p>
|
||||
<p className="f9 gray2 ph3 pb2">Groups</p>
|
||||
) : (
|
||||
""
|
||||
);
|
||||
@ -222,11 +222,11 @@ export class InviteSearch extends Component {
|
||||
<li
|
||||
key={group}
|
||||
className={
|
||||
"list mono mix-blend-diff white f8 pv2 ph3 pointer" +
|
||||
"list mono white-d f8 pv2 ph3 pointer" +
|
||||
" hover-bg-gray4 hover-bg-gray1-d"
|
||||
}
|
||||
onClick={e => this.addGroup(group)}>
|
||||
{group}
|
||||
onClick={() => this.addGroup(group)}>
|
||||
<span className="mix-blend-diff white">{group}</span>
|
||||
</li>
|
||||
);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user