File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed
useWidgets/Experience/widgets Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1- import { Grid , Row } from '@appquality/unguess-design-system' ;
1+ import { Col , Grid , Row } from '@appquality/unguess-design-system' ;
22import { useEffect } from 'react' ;
33import { useLocation , useNavigate , useParams } from 'react-router-dom' ;
44import { useAppDispatch } from 'src/app/hooks' ;
@@ -80,7 +80,9 @@ const CampaignPage = ({ children }: { children: React.ReactNode }) => {
8080 >
8181 < LayoutWrapper >
8282 < Grid >
83- < Row > { children } </ Row >
83+ < Row >
84+ < Col > { children } </ Col >
85+ </ Row >
8486 </ Grid >
8587 </ LayoutWrapper >
8688 </ Page >
Original file line number Diff line number Diff line change 11import { Campaign } from 'src/features/api' ;
2- import { Col , Row } from '@appquality/unguess-design-system' ;
2+ import { Col , Grid , Row } from '@appquality/unguess-design-system' ;
33import { SectionTitle } from 'src/pages/Campaign/SectionTitle' ;
44import { Divider } from 'src/common/components/divider' ;
55import { appTheme } from 'src/app/theme' ;
@@ -32,7 +32,7 @@ export const CampaignInfo = ({
3232 const { t } = useTranslation ( ) ;
3333
3434 return (
35- < div style = { { marginBottom : appTheme . space . xxl } } id = { id } >
35+ < Grid style = { { marginBottom : appTheme . space . xxl } } id = { id } >
3636 < Row >
3737 < Col xs = { 12 } style = { { margin : 0 } } >
3838 < SectionTitle
@@ -50,6 +50,6 @@ export const CampaignInfo = ({
5050 < Methodology campaignId = { campaign . id } isPreview = { isPreview } />
5151 </ div >
5252 </ StyledRow >
53- </ div >
53+ </ Grid >
5454 ) ;
5555} ;
Original file line number Diff line number Diff line change 11import { Campaign } from 'src/features/api' ;
2- import { Col , Row } from '@appquality/unguess-design-system' ;
2+ import { Col , Grid , Row } from '@appquality/unguess-design-system' ;
33import { SectionTitle } from 'src/pages/Campaign/SectionTitle' ;
44import { Divider } from 'src/common/components/divider' ;
55import { appTheme } from 'src/app/theme' ;
@@ -18,7 +18,7 @@ export const Overview = ({
1818 const { t } = useTranslation ( ) ;
1919
2020 return (
21- < div style = { { marginBottom : appTheme . space . xxl } } id = { id } >
21+ < Grid style = { { marginBottom : appTheme . space . xxl } } id = { id } >
2222 < Row >
2323 < Col xs = { 12 } style = { { margin : 0 } } >
2424 < SectionTitle
@@ -33,6 +33,6 @@ export const Overview = ({
3333 < Sentiment campaignId = { campaign . id } isPreview = { isPreview } />
3434 </ Col >
3535 </ Row >
36- </ div >
36+ </ Grid >
3737 ) ;
3838} ;
You can’t perform that action at this time.
0 commit comments