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:
Felipe Carvajal 2022-03-31 21:09:30 +02:00 committed by GitHub
parent 9556173360
commit d8808032e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>