mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Fixes icon alignment on delete app version button (#2631)
* fix: icon alignment on delete app version button * add: padding to trash icon on delete app version
This commit is contained in:
parent
9556173360
commit
d8808032e0
1 changed files with 2 additions and 1 deletions
|
|
@ -174,7 +174,7 @@ export const AppVersionsManager = function AppVersionsManager({
|
|||
}}
|
||||
disabled={isDeletingVersion}
|
||||
style={{
|
||||
display: mouseHoveredOnVersion === version.id ? 'block' : 'none',
|
||||
display: mouseHoveredOnVersion === version.id ? 'flex' : 'none',
|
||||
}}
|
||||
>
|
||||
<img
|
||||
|
|
@ -182,6 +182,7 @@ export const AppVersionsManager = function AppVersionsManager({
|
|||
width="12"
|
||||
height="12"
|
||||
className="mx-1"
|
||||
style={{ paddingLeft: '0.6px' }}
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue