mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-14 07:52:15 +00:00
Merge pull request #3334 from denis-sokolov/customization-fix-body-size-code
fix(profile): body size elements consistent with the rest
This commit is contained in:
commit
82fdf1bace
1 changed files with 6 additions and 5 deletions
|
|
@ -9,12 +9,13 @@ script(id='partials/options.profile.avatar.html', type='text/ng-template')
|
|||
.col-md-4
|
||||
h3=env.t('bodyBody')
|
||||
|
||||
h5=env.t('bodySize')
|
||||
.btn-group
|
||||
button.btn.btn-sm.btn-default(ng-class='{active: user.preferences.size=="slim"}', ng-click='set({"preferences.size":"slim"})')=env.t('bodySlim')
|
||||
button.btn.btn-sm.btn-default(ng-class='{active: user.preferences.size=="broad"}', ng-click='set({"preferences.size":"broad"})')=env.t('bodyBroad')
|
||||
|
||||
menu(type='list')
|
||||
li.customize-menu
|
||||
menu(label=env.t('bodySize'))
|
||||
.btn-group
|
||||
button.btn.btn-sm.btn-default(ng-class='{active: user.preferences.size=="slim"}', ng-click='set({"preferences.size":"slim"})')=env.t('bodySlim')
|
||||
button.btn.btn-sm.btn-default(ng-class='{active: user.preferences.size=="broad"}', ng-click='set({"preferences.size":"broad"})')=env.t('bodyBroad')
|
||||
|
||||
li.customize-menu
|
||||
menu(label=env.t('shirts'))
|
||||
each shirt in ['black', 'blue', 'green', 'pink', 'white', 'yellow']
|
||||
|
|
|
|||
Loading…
Reference in a new issue