style: content sections background color changed

This commit is contained in:
Mehak Nasir
2022-04-13 21:56:51 +05:00
committed by Mehak Nasir
parent e426892bb2
commit 4be926d788
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ export default function DiscussionContent() {
useContainerSizeForParent(refContainer);
return (
<div className="d-flex bg-light-300 flex-column w-75 w-xs-100 w-xl-75 align-items-center h-100 overflow-auto">
<div className="d-flex bg-light-400 flex-column w-75 w-xs-100 w-xl-75 align-items-center h-100 overflow-auto">
<div className="d-flex flex-column w-100 mw-xl" ref={refContainer}>
{postEditorVisible ? (
<Route path={Routes.POSTS.NEW_POST}>

View File

@@ -16,7 +16,7 @@ function EmptyPage({
}) {
const containerClasses = classNames(
'justify-content-center align-items-center d-flex w-100 flex-column pt-5',
{ 'bg-light-300': !fullWidth },
{ 'bg-light-400': !fullWidth },
);
return (