Use monospace font for registry table tag id and tag name

This commit is contained in:
Clement Ho 2019-01-09 09:20:20 +00:00 committed by Filipa Lacerda
parent c8ff16642d
commit ace9222943
2 changed files with 9 additions and 2 deletions

View File

@ -70,7 +70,7 @@ export default {
</thead>
<tbody>
<tr v-for="item in repo.list" :key="item.tag">
<td>
<td class="monospace">
{{ item.tag }}
<clipboard-button
v-if="item.location"
@ -80,7 +80,9 @@ export default {
/>
</td>
<td>
<span v-gl-tooltip.bottom :title="item.revision">{{ item.shortRevision }}</span>
<span v-gl-tooltip.bottom class="monospace" :title="item.revision">{{
item.shortRevision
}}</span>
</td>
<td>
{{ formatSize(item.size) }}

View File

@ -0,0 +1,5 @@
---
title: Use monospace font for registry table tag id and tag name
merge_request: 24205
author:
type: other