Skip to content

Commit

Permalink
Minor ui changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Damnae committed Sep 2, 2023
1 parent d0301b6 commit 4bbf21d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ h1
padding: 0 .5rem;
text-align: end;
}
h1 .pretitle
{
font-size:.66em;
color:grey;
}
nav h1
{
padding: 0;
Expand Down Expand Up @@ -155,7 +160,7 @@ aside h1:first-child
line-height:3rem;
overflow:hidden;
text-overflow: ellipsis;
word-break: break-word;
word-break: break-all;
}
main.panel
{
Expand Down
2 changes: 1 addition & 1 deletion src/views/abilities/Ability.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<template>
<header>
<h1>{{ abilityId }}</h1>
<h1><span class="pretitle">Ability:</span> {{ abilityId }}</h1>
</header>
<section :key="abilityId">

Expand Down
2 changes: 1 addition & 1 deletion src/views/abilities/Modifier.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@

<template>
<header>
<h1>{{ modifierId }}</h1>
<h1><span class="pretitle">Modifier:</span> {{ modifierId }}</h1>
</header>
<section :key="modifierId">

Expand Down
4 changes: 2 additions & 2 deletions src/views/abilities/RelicSetAbility.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<template>
<main class="panel">
<ProvideRelicSetContext :commitId="commitId" :objectId="objectId">
<Ability :abilityId="abilityId" />
</ProvideRelicSetContext>
<Ability :abilityId="abilityId" />
</ProvideRelicSetContext>
</main>
</template>

Expand Down
2 changes: 1 addition & 1 deletion src/views/navigation/AvatarSubNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<template v-for="skill in avatarSkills" :key="skill.SkillID">
<li>
<div>
{{ skill.SkillTag.Text }} {{ skill.SkillTypeDesc.Text }}
{{ skill.SkillTypeDesc.Text }} - {{ skill.SkillTag.Text }}
<span class="minor" :title="skill.SkillName.Text">{{ skill.SkillName.Text }}</span>
<span class="minor">{{ skill.SkillTriggerKey }}</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/views/navigation/MonsterSubNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<template v-for="skill in monsterSkills" :key="skill.SkillID">
<li>
<div>
{{ skill.SkillTag.Text }} {{ skill.SkillTypeDesc.Text }}
{{ skill.SkillTypeDesc.Text }} - {{ skill.SkillTag.Text }}
<span class="minor" :title="skill.SkillName.Text">{{ skill.SkillName.Text }}</span>
<span class="minor">{{ skill.SkillTriggerKey }}</span>
</div>
Expand Down

0 comments on commit 4bbf21d

Please sign in to comment.