Skip to content

Commit e2c0256

Browse files
committed
increase icon size for segment modes
due to the new icons having more details, we need to increase their size a bit.
1 parent 388e040 commit e2c0256

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/evolution-common/src/services/questionnaire/sections/segments/__tests__/widgetSegmentMode.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('getModeWidgetConfig', () => {
3939
inputType: 'radio',
4040
twoColumns: false,
4141
datatype: 'string',
42-
iconSize: '1.5em',
42+
iconSize: '2.25em',
4343
columns: 2,
4444
label: expect.any(Function),
4545
choices: modeValues.map((mode) => expect.objectContaining({

packages/evolution-common/src/services/questionnaire/sections/segments/__tests__/widgetSegmentModePre.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('getModePreWidgetConfig', () => {
3535
inputType: 'radio',
3636
twoColumns: false,
3737
datatype: 'string',
38-
iconSize: '1.5em',
38+
iconSize: '2.25em',
3939
columns: 2,
4040
label: expect.any(Function),
4141
choices: expect.arrayContaining([

packages/evolution-common/src/services/questionnaire/sections/segments/widgetSegmentMode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export const getModeWidgetConfig = (
6565
inputType: 'radio',
6666
twoColumns: false,
6767
datatype: 'string',
68-
iconSize: '1.5em',
68+
iconSize: '2.25em',
6969
columns: 2,
7070
label: (t: TFunction) =>
7171
t(['customSurvey:segments:ModeSpecify', 'segments:ModeSpecify'], {

packages/evolution-common/src/services/questionnaire/sections/segments/widgetSegmentModePre.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export const getModePreWidgetConfig = (
100100
inputType: 'radio',
101101
twoColumns: false,
102102
datatype: 'string',
103-
iconSize: '1.5em',
103+
iconSize: '2.25em',
104104
columns: 2,
105105
label: (t: TFunction, interview, path) => {
106106
const person = odHelpers.getPerson({ interview });

0 commit comments

Comments
 (0)