This commit is contained in:
Kenneth Jannette
2024-01-13 13:52:19 -06:00
parent 9fe2e61a1d
commit 0a425bbbf8
2 changed files with 19 additions and 17 deletions

View File

@@ -217,10 +217,9 @@ const Dashboard = () => {
<></> <></>
)} )}
</div> </div>
<div className="stats-unit-wrapper">
{responseCount > 0 ? ( {responseCount > 0 ? (
<> <>
<div className="stats-unit-wrapper">
<div className="stats-icon-wrapper"> <div className="stats-icon-wrapper">
<Pencil style={{ color: "#767676" }} /> <Pencil style={{ color: "#767676" }} />
</div> </div>
@@ -232,14 +231,15 @@ const Dashboard = () => {
: " responses Novodrafted"} : " responses Novodrafted"}
</p> </p>
</div> </div>
</div>
</> </>
) : ( ) : (
<></> <></>
)} )}
</div>
<div className="stats-unit-wrapper">
{responseCount > 0 ? ( {responseCount > 0 ? (
<> <>
<div className="stats-unit-wrapper">
<div className="stats-icon-wrapper"> <div className="stats-icon-wrapper">
<Clock style={{ color: "#f27300" }} /> <Clock style={{ color: "#f27300" }} />
</div> </div>
@@ -249,13 +249,13 @@ const Dashboard = () => {
using Novodraft using Novodraft
</p> </p>
</div> </div>
</div>
</> </>
) : ( ) : (
<></> <></>
)} )}
</div> </div>
</div> </div>
</div>
{isMobile ? ( {isMobile ? (
<MobileContent isDashboard={isDashboard} /> <MobileContent isDashboard={isDashboard} />
) : ( ) : (

View File

@@ -115,9 +115,11 @@
display: flex; display: flex;
flex-direction: row; flex-direction: row;
background-color: var(--barely-there-accent); background-color: var(--barely-there-accent);
width: 290px;
margin: 4px 0px; margin: 4px 0px;
padding: 8px 0px; padding: 8px 0px;
border-radius: 15px; border-radius: 15px;
justify-content: center;
} }
.notification-center { .notification-center {