Commit 2857a3ce authored by Nathan Friend's avatar Nathan Friend

Fix alignment of button text on Edit Release page

This commit fixes the alignment of the text and icons inside the
"remove" button on the Edit Release page.
parent b954a022
...@@ -172,13 +172,15 @@ export default { ...@@ -172,13 +172,15 @@ export default {
<div class="mb-5 mb-sm-3 mt-sm-4 col col-sm-auto"> <div class="mb-5 mb-sm-3 mt-sm-4 col col-sm-auto">
<gl-button <gl-button
v-gl-tooltip v-gl-tooltip
class="remove-button w-100" class="remove-button w-100 form-control"
:aria-label="__('Remove asset link')" :aria-label="__('Remove asset link')"
:title="__('Remove asset link')" :title="__('Remove asset link')"
@click="onRemoveClicked(link.id)" @click="onRemoveClicked(link.id)"
> >
<gl-icon class="mr-1 mr-sm-0 mb-1" :size="16" name="remove" /> <div class="d-flex">
<span class="d-inline d-sm-none">{{ __('Remove asset link') }}</span> <gl-icon class="mr-1 mr-sm-0" :size="16" name="remove" />
<span class="d-inline d-sm-none">{{ __('Remove asset link') }}</span>
</div>
</gl-button> </gl-button>
</div> </div>
</div> </div>
......
---
title: Fix alignment of button text on the Edit Release page
merge_request: 33104
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment