Commit 634a6d35 authored by Illya Klymov's avatar Illya Klymov

Merge branch '216932-fix-alignment' into 'master'

Fix the alingment issues

See merge request gitlab-org/gitlab!33855
parents 315e9e46 f4b8d2da
......@@ -56,7 +56,7 @@ export default {
</script>
<template>
<div v-if="hasSeverityBadge" class="severity-badge text-left text-nowrap gl-text-gray-900">
<div v-if="hasSeverityBadge" class="severity-badge text-sm-left text-nowrap gl-text-gray-900">
<span :class="className"
><gl-icon v-tooltip="tooltipTitle" :name="iconName" :size="12" class="gl-mr-3"
/></span>
......
......@@ -172,7 +172,11 @@ export default {
</template>
<template #cell(checkbox)="{ item }">
<gl-form-checkbox :checked="isSelected(item)" @change="toggleVulnerability(item)" />
<gl-form-checkbox
class="d-inline-block mr-0"
:checked="isSelected(item)"
@change="toggleVulnerability(item)"
/>
</template>
<template #cell(state)="{ item }">
......
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