mirror of
https://github.com/BioArchLinux/Rosa.git
synced 2025-03-10 12:02:43 +00:00
misc tuning
This commit is contained in:
parent
bc5dc1ad19
commit
4bfe16dafc
4 changed files with 8 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<footer>
|
||||
<p>Copyright © 2023-present BioArchLinux members.</p>
|
||||
<p>Made by literal.</p>
|
||||
<p>Copyright © 2023-present <a href="https://bioarchlinux.org" title="Contact Community">BioArchLinux members</a>.</p>
|
||||
<p>Made by <a href="https://github.com/sinsong">literal</a>.</p>
|
||||
<p>The registered trademark Linux® is used pursuant to a sublicense from LMI, the exclusive licensee of Linus Torvalds, owner of the mark on a world-wide basis.</p>
|
||||
</footer>
|
||||
</template>
|
||||
|
|
|
@ -64,7 +64,7 @@ watch(
|
|||
<td v-for="heading in tableHeaders">
|
||||
<router-link v-if="heading.field == 'name'" :to="`/${pkg.name}`">{{pkg.name}}</router-link>
|
||||
<time v-else-if="heading.field == 'builddate'" :datetime="moment.unix(pkg.builddate).format()">{{ moment.unix(pkg.builddate).format('YYYY-MM-DD') }}</time>
|
||||
<span v-else>{{ pkg[heading.field] }}</span>
|
||||
<span v-else :class="{ wrap: heading.field === 'desc' }">{{ pkg[heading.field] }}</span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
-webkit-text-size-adjust: 100%;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 576px) {
|
||||
@media screen and (max-width: 650px) {
|
||||
:root {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
|
|
@ -41,6 +41,10 @@ table {
|
|||
margin: .5em 0;
|
||||
}
|
||||
|
||||
.wrap {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.box {
|
||||
border: 1px solid #bcd;
|
||||
padding: .5em;
|
||||
|
|
Loading…
Add table
Reference in a new issue