mirror of
https://github.com/VueTubeApp/VueTube
synced 2025-01-06 23:51:13 +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 class="card">
|
||||||
<v-card-title style="padding-bottom: 0;">
|
<v-card-title style="padding-bottom: 0;">
|
||||||
{{ item.author.login }}
|
{{ 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>
|
</v-card-title>
|
||||||
|
|
||||||
<div style="margin-left: 1em;">
|
<div style="margin-left: 1em;">
|
||||||
|
<div class="date" v-text="new Date(item.commit.committer.date).toLocaleString()" />
|
||||||
{{ item.commit.message }}
|
{{ item.commit.message }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -35,6 +36,10 @@
|
||||||
transform: translateY(5%);
|
transform: translateY(5%);
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
.date {
|
||||||
|
color: #999;
|
||||||
|
transform: translateY(-40%);
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
Loading…
Reference in a new issue