mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 03:30:25 +00:00
char level only appears in the MAIN avatar, not the avatar in the customization modal
This commit is contained in:
parent
b638ee5ea6
commit
ebf99d40d1
3 changed files with 8 additions and 2 deletions
|
|
@ -22,7 +22,6 @@
|
|||
.avatar
|
||||
cursor: pointer
|
||||
position: relative
|
||||
margin-top: -12px
|
||||
width: 90px
|
||||
height: 90px
|
||||
|
||||
|
|
@ -35,6 +34,10 @@
|
|||
bottom: 0px
|
||||
right: 10px
|
||||
|
||||
.main-avatar
|
||||
margin-top: -12px
|
||||
|
||||
|
||||
.character-sprites span
|
||||
position: absolute
|
||||
|
||||
|
|
|
|||
|
|
@ -71,6 +71,7 @@
|
|||
|
||||
// narrower spriting for customize modal
|
||||
.customize
|
||||
// shared option-box styles
|
||||
[class^="m_hair"], [class^="m_skin"], .m_head_0
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
|
|
|
|||
|
|
@ -580,7 +580,9 @@ do a find for the string after "→"
|
|||
<span class='{:p.gender}_weapon_{@profile.items.weapon}'></span>
|
||||
{/}
|
||||
</div>
|
||||
<div class="lvl"><span class="badge badge-info">Lvl {@profile.stats.lvl}</span></div>
|
||||
{#if @main}
|
||||
<div class="lvl"><span class="badge badge-info">Lvl {@profile.stats.lvl}</span></div>
|
||||
{/}
|
||||
</div>
|
||||
|
||||
<Scripts:>
|
||||
|
|
|
|||
Loading…
Reference in a new issue