mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-24 19:59:12 +00:00
fix(Category): hidden icon fit and trim
This commit is contained in:
parent
194cef6abc
commit
2801573d7e
1 changed files with 7 additions and 3 deletions
|
@ -32,13 +32,17 @@ class Category extends Component {
|
|||
<h4>
|
||||
{category.get('name')}
|
||||
{category.get('hidden') && (
|
||||
<span uk-tooltip="" title="Hidden" style={{ marginLeft: '0.5em' }}>
|
||||
<GoEyeClosed />
|
||||
<span
|
||||
uk-tooltip=""
|
||||
title="Hidden.<br />No one may select these roles."
|
||||
style={{ marginLeft: '0.5em', fontSize: '0.7em', color: 'var(--c-7)' }}
|
||||
>
|
||||
<GoEyeClosed className="smol-bump" />
|
||||
</span>
|
||||
)}
|
||||
</h4>
|
||||
<div uk-tooltip="" title="Edit" onClick={onEditOpen}>
|
||||
<GoPencil />
|
||||
<GoPencil className="smol-bump" />
|
||||
</div>
|
||||
</div>
|
||||
{category
|
||||
|
|
Loading…
Add table
Reference in a new issue