新增作者链接

This commit is contained in:
kura 2026-05-11 11:25:00 +08:00
parent 1616de8978
commit 1de4a6286d

View File

@ -122,6 +122,9 @@
<FileView :isRemote="true" :selectedFiles="selectedRemoteFiles" />
</div>
</div>
<div class="author-footer">
<a href="https://kuraa.cc" target="_blank" rel="noopener">kuraa</a>
</div>
<FileTransferView />
</template>
@ -640,6 +643,25 @@ input:disabled {
color: #007aff;
}
.author-footer {
position: fixed;
right: 16px;
bottom: 12px;
z-index: 999;
line-height: 1;
}
.author-footer a {
color: #bbb;
font-size: 12px;
text-decoration: none;
transition: color 0.2s;
}
.author-footer a:hover {
color: #007aff;
}
/* 移动端适配样式 */
@media screen and (max-width: 768px) {
.status-bar {