Commit 151256ed authored by Jacques Erasmus's avatar Jacques Erasmus

Merge branch 'fix-spacing-between-note-badges' into 'master'

Fix spacing between note badges

See merge request gitlab-org/gitlab!71208
parents b2d6be7a f629eb9b
......@@ -257,7 +257,7 @@ export default {
<user-access-role-badge
v-if="isAuthor"
v-gl-tooltip
class="gl-mx-3 d-none d-md-inline-block"
class="gl-mr-3 d-none d-md-inline-block"
:title="displayAuthorBadgeText"
>
{{ __('Author') }}
......@@ -265,7 +265,7 @@ export default {
<user-access-role-badge
v-if="accessLevel"
v-gl-tooltip
class="gl-mx-3"
class="gl-mr-3"
:title="displayMemberBadgeText"
>
{{ accessLevel }}
......@@ -273,7 +273,7 @@ export default {
<user-access-role-badge
v-else-if="isContributor"
v-gl-tooltip
class="gl-mx-3"
class="gl-mr-3"
:title="displayContributorBadgeText"
>
{{ __('Contributor') }}
......
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