igloo-d2c-components 1.1.10 → 1.1.11-non-prod

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/index.js CHANGED
@@ -5220,15 +5220,12 @@ const ChecklistTitle = styled(Typography)({
5220
5220
  wordSpacing: '0px',
5221
5221
  fontFamily: '"MetLifeCircular", "Montserrat", sans-serif',
5222
5222
  });
5223
- const ChecklistGrid = styled(Box)(({ theme }) => ({
5223
+ const ChecklistGrid = styled(Box)({
5224
5224
  display: 'grid',
5225
5225
  gridTemplateColumns: 'repeat(2, minmax(0, 1fr))',
5226
5226
  columnGap: '8px',
5227
5227
  rowGap: '0px',
5228
- [theme.breakpoints.up('md')]: {
5229
- gridTemplateColumns: 'repeat(4, minmax(0, 1fr))',
5230
- },
5231
- }));
5228
+ });
5232
5229
  const ChecklistOptionLabel = styled(Typography)({
5233
5230
  fontSize: '12px',
5234
5231
  fontWeight: 400,
@@ -5326,7 +5323,7 @@ const HealthQuestionGroup = ({ description, bullets, question, questionNumber, v
5326
5323
  }, children: description })), jsxs(QuestionText, { children: [questionNumber && `${questionNumber}. `, question] }), Boolean(bullets?.length) && (jsx(Box, { sx: {
5327
5324
  display: 'flex',
5328
5325
  flexDirection: { xs: 'column', md: 'row' },
5329
- gap: '16px',
5326
+ // gap: '16px',
5330
5327
  width: '100%',
5331
5328
  }, children: bulletColumns.map((columnBullets, columnIndex) => (jsx(Box, { sx: { flex: '1 0 0', minWidth: 0 }, children: jsx("ul", { style: {
5332
5329
  margin: '0',