-
Notifications
You must be signed in to change notification settings - Fork 273
Add VJ full width scrolly component #13669
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: latest
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -70,7 +70,7 @@ | |
| import { ServiceContext } from '../../contexts/ServiceContext'; | ||
| import RelatedContentSection from '../../components/RelatedContentSection'; | ||
| import Disclaimer from '../../components/Disclaimer'; | ||
| import SecondaryColumn from './SecondaryColumn'; | ||
|
Check failure on line 73 in src/app/pages/ArticlePage/ArticlePage.tsx
|
||
| import styles from './ArticlePage.styles'; | ||
| import { ComponentToRenderProps, TimeStampProps } from './types'; | ||
| import ContinueReadingButton, { | ||
|
|
@@ -444,7 +444,7 @@ | |
| )} | ||
| <ElectionBanner aboutTags={aboutTags} taggings={taggings} /> | ||
| <div css={styles.grid}> | ||
| <div css={!isPGL ? styles.primaryColumn : styles.pglColumn}> | ||
| <div css={styles.pglColumn}> | ||
|
||
| <main css={styles.mainContent} role="main"> | ||
| <Blocks | ||
| blocks={articleBlocks} | ||
|
|
@@ -481,7 +481,7 @@ | |
| </div> | ||
| </div> | ||
| </div> | ||
| {!isApp && !isPGL && <SecondaryColumn pageData={pageData} />} | ||
| {/* {!isApp && !isPGL && <SecondaryColumn pageData={pageData} />} */} | ||
|
||
| </div> | ||
|
|
||
| {/* // EXPERIMENT: Referrer Experiment | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing the grid max-width to 100% affects all article pages globally. This may cause layout issues for standard articles that were designed for the constrained width. Consider making this change conditional based on article type or introducing a variant that only applies to VJ scrolly articles.