1
0
This commit is contained in:
syui 2024-04-02 22:45:21 +09:00
parent 9798c33252
commit c7abbd770c
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56

View File

@ -37,7 +37,7 @@
<th scope="row">
<a :href="this.url + this.s_a"><img :src="url + 'manga/' + this.s_a + '.webp'" v-on:click="page_run(s_a)"></a>
</th>
<td>0</td>
<td>0.0</td>
</tr>
</tbody>
<tbody>
@ -45,7 +45,7 @@
<th scope="row">
<a :href="this.url + this.s_b"><img :src="url + 'manga/' + this.s_b + '.webp'" v-on:click="page_run(s_a)"></a>
</th>
<td>1</td>
<td>0.1</td>
</tr>
</tbody>
</table>
@ -55,7 +55,7 @@
<div class="bsky_comment">
<span v-for="i in api_json.data" class="comment">
<p class="comment-body">
<p class="comment-body" v-if="i.text">
<img :src="i.avatar" v-if="i.avatar" class="comment"/> <span class="comment-time" v-if="i.handle">{{ moment(i.updated_at) }}</span> <span class="comment-handle" v-if="i.handle"><a :href="i.bsky_url">@{{ i.handle }}</a></span>
<span class="comment-text">{{ i.text }}</span>
</p>
@ -79,7 +79,7 @@
<a href="https://yui.syui.ai"><img src="https://syui.ai/ai.png" v-on:click="page_run(s_a)"></a>
</th>
<td>yui</td>
<td>不思議な力を持った女の子のお話</td>
<td>不思議な力を持つアイのお話</td>
<td>syui</td>
</tr>
</tbody>
@ -326,12 +326,15 @@ span.comment {
width:100%;
}
.page a img {
width:100%;
width:160px;
}
.hooper-list img {
border: solid 0px #fff;
margin:20px 0 0 0;
width:100%;
}
p.comment-body {
padding: 5px;
}
}
</style>