Commit b1545353 authored by Paul Slaughter's avatar Paul Slaughter

Merge branch 'ph/vueLastCommitMinHeight' into 'master'

Adds a min height to Vue last commit widget

See merge request gitlab-org/gitlab!19377
parents bde1e878 b2758898
......@@ -81,7 +81,7 @@ export default {
<template>
<div class="info-well d-none d-sm-flex project-last-commit commit p-3">
<gl-loading-icon v-if="isLoading" size="md" class="mx-auto" />
<gl-loading-icon v-if="isLoading" size="md" class="m-auto" />
<template v-else>
<user-avatar-link
v-if="commit.author"
......@@ -155,3 +155,9 @@ export default {
</template>
</div>
</template>
<style scoped>
.commit {
min-height: 4.75rem;
}
</style>
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