Skip to content

Commit

Permalink
revert change to border colour on discussion sections
Browse files Browse the repository at this point in the history
  • Loading branch information
cemms1 committed Feb 23, 2024
1 parent 21ef891 commit 944a31e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dotcom-rendering/src/layouts/CommentLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ export const CommentLayout = (props: WebProps | AppsProps) => {
backgroundColour={themePalette(
'--discussion-section-background',
)}
borderColour={themePalette('--discussion-border')}
borderColour={themePalette('--article-border')}
fontColour={themePalette('--discussion-text')}
>
<DiscussionLayout
Expand Down
2 changes: 1 addition & 1 deletion dotcom-rendering/src/layouts/ImmersiveLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ export const ImmersiveLayout = (props: WebProps | AppProps) => {
backgroundColour={themePalette(
'--discussion-section-background',
)}
borderColour={themePalette('--discussion-border')}
borderColour={themePalette('--article-border')}
fontColour={themePalette('--discussion-text')}
>
<DiscussionLayout
Expand Down
2 changes: 1 addition & 1 deletion dotcom-rendering/src/layouts/InteractiveLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ export const InteractiveLayout = (props: WebProps | AppsProps) => {
backgroundColour={themePalette(
'--discussion-section-background',
)}
borderColour={themePalette('--discussion-border')}
borderColour={themePalette('--article-border')}
fontColour={themePalette('--discussion-text')}
>
<DiscussionLayout
Expand Down
2 changes: 1 addition & 1 deletion dotcom-rendering/src/layouts/LiveLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,7 @@ export const LiveLayout = (props: WebProps | AppsProps) => {
backgroundColour={themePalette(
'--discussion-section-background',
)}
borderColour={themePalette('--discussion-border')}
borderColour={themePalette('--article-border')}
fontColour={themePalette('--discussion-text')}
>
<DiscussionLayout
Expand Down
2 changes: 1 addition & 1 deletion dotcom-rendering/src/layouts/PictureLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ export const PictureLayout = (props: WebProps | AppsProps) => {
backgroundColour={themePalette(
'--discussion-section-background',
)}
borderColour={themePalette('--discussion-border')}
borderColour={themePalette('--article-border')}
fontColour={themePalette('--discussion-text')}
>
<DiscussionLayout
Expand Down
2 changes: 1 addition & 1 deletion dotcom-rendering/src/layouts/ShowcaseLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ export const ShowcaseLayout = (props: WebProps | AppsProps) => {
backgroundColour={themePalette(
'--discussion-section-background',
)}
borderColour={themePalette('--discussion-border')}
borderColour={themePalette('--article-border')}
fontColour={themePalette('--discussion-text')}
>
<DiscussionLayout
Expand Down
2 changes: 1 addition & 1 deletion dotcom-rendering/src/layouts/StandardLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ export const StandardLayout = (props: WebProps | AppProps) => {
backgroundColour={themePalette(
'--discussion-section-background',
)}
borderColour={themePalette('--discussion-border')}
borderColour={themePalette('--article-border')}
fontColour={themePalette('--discussion-text')}
>
<DiscussionLayout
Expand Down

0 comments on commit 944a31e

Please sign in to comment.