mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Fix: edit button visibility on app card in dark mode (#12437)
This commit is contained in:
parent
07471ab051
commit
8038df15a0
1 changed files with 2 additions and 2 deletions
|
|
@ -200,10 +200,10 @@ export default function AppCard({
|
|||
<button
|
||||
type="button"
|
||||
className="tj-primary-btn tj-text-xsm edit-button"
|
||||
style={{ color: darkMode ? '#11181C' : '#FDFDFE' }}
|
||||
style={{ color: darkMode ? '#FFFFFF' : '#FDFDFE' }}
|
||||
data-cy="edit-button"
|
||||
>
|
||||
<SolidIcon name="editrectangle" width="14" fill={darkMode ? '#11181C' : '#FDFDFE'} />
|
||||
<SolidIcon name="editrectangle" width="14" fill={darkMode ? '#FFFFFF' : '#FDFDFE'} />
|
||||
{t('globals.edit', 'Edit')}
|
||||
</button>
|
||||
</Link>
|
||||
|
|
|
|||
Loading…
Reference in a new issue