mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Changed button color in nav settings in AdminX
refs. https://github.com/TryGhost/Team/issues/3432
This commit is contained in:
parent
5bfbd5a7a0
commit
005a488eed
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ const NavigationEditor: React.FC<{
|
|||
<span className='inline-block w-8'></span>
|
||||
<TextField className='grow' placeholder='New item label' value={newItem.label} onChange={e => setNewItem({...newItem, label: e.target.value})} />
|
||||
<TextField className='ml-2 grow' value={newItem.url} onChange={e => setNewItem({...newItem, url: e.target.value})} />
|
||||
<Button icon="add" iconColorClass='text-green stroke-2' size='sm' onClick={addItem} />
|
||||
<Button color='green' icon="add" iconColorClass='text-white' size='sm' onClick={addItem} />
|
||||
</div>
|
||||
</div>;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue