This commit is contained in:
Kenneth Jannette
2024-01-12 19:18:17 -06:00
parent 9965471c56
commit a87208c3ff
2 changed files with 25 additions and 12 deletions

View File

@@ -1,10 +1,11 @@
import legalTechFlip from "../Assets/Images/legalTechFlip.jpg"; import legalTechFlip from "../Assets/Images/legalTechFlip.jpg";
const MobileContent = ({ isDashboard }) => { const MobileContent = ({ isDashboard }) => {
const copy = isDashboard ? ( const copy = isDashboard ? (
<>
<div> <div>
<p className="mobile-text-dashboard"> <p className="mobile-text-dashboard">
Novodraft is a desktop application. The functionailty of your Dashboard Novodraft is a desktop application. The functionailty of your
in mobile mode is limited to displaying stats and important Dashboard in mobile mode is limited to displaying stats and important
notifications. notifications.
</p> </p>
<p className="mobile-text-dashboard"> <p className="mobile-text-dashboard">
@@ -12,6 +13,8 @@ const MobileContent = ({ isDashboard }) => {
Dashboard. Dashboard.
</p> </p>
</div> </div>
<div></div>
</>
) : ( ) : (
"Novodraft is a desktop application. Please login on your desktop device to use this feature." "Novodraft is a desktop application. Please login on your desktop device to use this feature."
); );

View File

@@ -107,10 +107,20 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
margin: 12px 0px; margin-top: 12px;
margin-bottom: 0px;
padding: 0px 6px; padding: 0px 6px;
background-color: #fff; background-color: #fff;
height: 100%; height: 100%;
border-radius: 6px; border-radius: 6px;
} }
.stats-unit-wrapper {
display: flex;
flex-direction: row;
background-color: var(--barely-there-accent);
margin: 4px 0px;
padding: 8px 0px;
border-radius: 15px;
}
} }