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:
parent
0384eb33a3
commit
627005c807
1 changed files with 6 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue