diff --git a/nuxt/assets/styles/global.sass b/nuxt/assets/styles/global.sass index 658c970f..5c07fc0a 100644 --- a/nuxt/assets/styles/global.sass +++ b/nuxt/assets/styles/global.sass @@ -85,6 +85,7 @@ h4.c-subheader pre .v-theme--dark & background: #343434 + .v-theme--light & background: #d7d7d7 @@ -92,3 +93,9 @@ h4.c-subheader overflow-x: auto white-space: nowrap padding: 8px 16px + +.g-2 + gap: 8px !important + +.g-4 + gap: 16px !important diff --git a/nuxt/locales/en.yaml b/nuxt/locales/en.yaml index bda44621..81305dff 100644 --- a/nuxt/locales/en.yaml +++ b/nuxt/locales/en.yaml @@ -85,7 +85,13 @@ bookmark: completeLeveling: Complete Leveling completeLevelingDesc: Removes all bookmarks above this. +charactersPage: + possessionStatus: Possession Status + owned: Owned + notOwned: Not Owned + characterDetailsPage: + iHave: I have this character. ascension: Ascension / Character Level Up Materials skills: Skill Leveling Materials diff --git a/nuxt/locales/ja.yaml b/nuxt/locales/ja.yaml index c1773335..f1415c9b 100644 --- a/nuxt/locales/ja.yaml +++ b/nuxt/locales/ja.yaml @@ -83,7 +83,13 @@ bookmark: completeLeveling: 育成完了 completeLevelingDesc: これより上のブックマークをすべて解除します。 +charactersPage: + possessionStatus: 所持状況 + owned: 所持 + notOwned: 未所持 + characterDetailsPage: + iHave: 所持 ascension: キャラLvアップ/昇格素材 skills: スキルLvアップ素材 diff --git a/nuxt/pages/characters/[characterId].vue b/nuxt/pages/characters/[characterId].vue index fe237565..b72fa881 100644 --- a/nuxt/pages/characters/[characterId].vue +++ b/nuxt/pages/characters/[characterId].vue @@ -1,6 +1,7 @@