diff --git a/components/CharacterGrid/index.scss b/components/CharacterGrid/index.scss index e1f3ca07..97fc45ad 100644 --- a/components/CharacterGrid/index.scss +++ b/components/CharacterGrid/index.scss @@ -4,6 +4,10 @@ justify-content: center; margin: auto; max-width: 761px; + + @include breakpoint(tablet) { + align-items: center; + } } #grid_characters { diff --git a/components/Dialog/index.scss b/components/Dialog/index.scss index 2d380e53..b93fbc55 100644 --- a/components/Dialog/index.scss +++ b/components/Dialog/index.scss @@ -12,6 +12,7 @@ height: auto; min-width: $unit * 48; min-height: $unit-12x; + min-width: 580px; padding: $unit * $multiplier; position: absolute; top: 50%; diff --git a/components/JobDropdown/index.tsx b/components/JobDropdown/index.tsx index bc863821..30a76750 100644 --- a/components/JobDropdown/index.tsx +++ b/components/JobDropdown/index.tsx @@ -41,7 +41,9 @@ const JobDropdown = React.forwardRef( // Set current job from state on mount useEffect(() => { - setCurrentJob(party.job) + if (party.job.id !== '-1') { + setCurrentJob(party.job) + } }, []) // Organize jobs into groups on mount @@ -107,7 +109,6 @@ const JobDropdown = React.forwardRef( return (