0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2025-01-05 07:01:14 +00:00

move date location to prevent wrapping in update manager

This commit is contained in:
Kenny 2022-03-08 12:35:07 -05:00
parent 0384eb33a3
commit 627005c807

View file

@ -5,10 +5,11 @@
<v-card class="card">
<v-card-title style="padding-bottom: 0;">
{{ item.author.login }}
<span v-text="`• ${item.sha.substring(0, 7)} • ${new Date(item.commit.committer.date).toLocaleString()}`" class="subtitle" />
<span v-text="`• ${item.sha.substring(0, 7)}`" class="subtitle" />
</v-card-title>
<div style="margin-left: 1em;">
<div class="date" v-text="new Date(item.commit.committer.date).toLocaleString()" />
{{ item.commit.message }}
</div>
@ -35,6 +36,10 @@
transform: translateY(5%);
color: #999;
}
.date {
color: #999;
transform: translateY(-40%);
}
</style>
<script>