Skip to content

Commit

Permalink
💄 微调UI
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMuli committed Nov 24, 2024
1 parent f47c161 commit da5fae7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/components/userAchi/tua-achi-list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</div>
</template>
<script lang="ts" setup>
import { ref, computed, watch, onMounted } from "vue";
import { computed, onMounted, ref, watch } from "vue";
import { AppAchievementSeriesData, AppNameCardsData } from "../../data/index.js";
import TSUserAchi from "../../plugins/Sqlite/modules/userAchi.js";
Expand Down Expand Up @@ -161,7 +161,8 @@ function switchAchiInfo(next: boolean): void {
.tua-al-container {
display: flex;
width: 100%;
height: 100%;
height: fit-content;
max-height: 100%;
flex-direction: column;
overflow-y: auto;
row-gap: 10px;
Expand Down
5 changes: 3 additions & 2 deletions src/components/userAvatar/tua-avatar-box.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const avatarBox = computed<TItemBoxData>(() => {
innerText: avatar.name,
innerHeight: 30,
display: "inner",
clickable: false,
clickable: true,
};
});
const weaponBox = computed<TItemBoxData>(() => {
Expand All @@ -95,7 +95,7 @@ const weaponBox = computed<TItemBoxData>(() => {
innerText: weapon.name,
innerHeight: 20,
display: "inner",
clickable: false,
clickable: true,
};
});
const relicsBox = computed<AvatarRelics>(() => {
Expand Down Expand Up @@ -144,6 +144,7 @@ function getWeaponTitle(): string {
border: 1px inset var(--common-shadow-2);
border-radius: 5px;
background: var(--box-bg-2);
cursor: pointer;
row-gap: 5px;
}
Expand Down

0 comments on commit da5fae7

Please sign in to comment.