This commit is contained in:
Kenneth Jannette
2024-01-12 19:35:41 -06:00
parent ea91ce9caa
commit 0a246997c0
2 changed files with 26 additions and 8 deletions

View File

@@ -30,15 +30,24 @@ const MobileContent = ({ isDashboard }) => {
</>
) : (
<>
<div className="mobile-divider"></div>
<div>
<div>
<strong>Notification Center</strong>
</div>
</div>
</>
)}
{isDashboard ? (
<div className="mobile-info-heading-dashboard">{copy}</div>
) : (
<div className="mobile-info-heading">{copy}</div>
)}
<div className="mobile-divider"></div>
<div className="lower-foo">
{isDashboard ? (
<>
<div className="mobile-divider"></div>
<div className="mobile-info-heading-dashboard">{copy}</div>
<div className="mobile-divider"></div>
</>
) : (
<div className="mobile-info-heading">{copy}</div>
)}
</div>
</div>
</>
);