Skip to content

Commit

Permalink
Style modal description
Browse files Browse the repository at this point in the history
  • Loading branch information
jengu288 committed Mar 12, 2024
1 parent cc180c9 commit 22136ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion client/src/components/lobby/Lobby.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ const { t } = useI18n();
v-t="'recPlayersModalLabel'"
class="modal-title mx-auto font-fancy display-6"></h5>
</div>
<div v-t="'recPlayersModalBody'" class="modal-body"></div>
<div class="modal-body text-center">
<div v-t="'recPlayersModalBody1'"></div>
<div v-t="'recPlayersModalBody2'"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Close</button>

Check warning on line 70 in client/src/components/lobby/Lobby.vue

View workflow job for this annotation

GitHub Actions / build (18.x)

raw text 'Close' is used

Check warning on line 70 in client/src/components/lobby/Lobby.vue

View workflow job for this annotation

GitHub Actions / build (20.x)

raw text 'Close' is used
<button type="button" class="btn btn-blue" @click="startGame">Start Game</button>

Check warning on line 71 in client/src/components/lobby/Lobby.vue

View workflow job for this annotation

GitHub Actions / build (18.x)

raw text 'Start Game' is used

Check warning on line 71 in client/src/components/lobby/Lobby.vue

View workflow job for this annotation

GitHub Actions / build (20.x)

raw text 'Start Game' is used
Expand Down
3 changes: 2 additions & 1 deletion client/src/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ export default {
coffeeBannerLink: "I'd love a tea",
optionsLabel: 'Game Options',
recPlayersModalLabel: 'Warning!',
recPlayersModalBody: 'This lobby is a bit crowded ( ・⌓・`) Splitting up could make things more enjoyable!',
recPlayersModalBody1: 'This lobby is a bit crowded (⚆ᗝ⚆)',
recPlayersModalBody2: 'Splitting up could make things more enjoyable!',

/*** OPTIONS STRINGS ***/
timerDurationLabel: 'Timer',
Expand Down
2 changes: 1 addition & 1 deletion common/src/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const defaultOptions: Options = {
sikeRetries: 0,
promptSkipping: true,
minPlayers: 3,
recPlayers: 8,
recPlayers: 3,
maxPlayers: 20,
packs: {},
customPrompts: []
Expand Down

0 comments on commit 22136ce

Please sign in to comment.