This commit is contained in:
Kenneth Jannette
2024-01-12 17:18:30 -06:00
parent fc032da063
commit 8b11fae765
3 changed files with 50 additions and 20 deletions

View File

@@ -28,6 +28,9 @@ const CaseListPage = ({ perPage }) => {
if (count.current == null) { if (count.current == null) {
setIsMobile(window.innerWidth < 440); setIsMobile(window.innerWidth < 440);
} }
if (count.current < 3) {
setIsMobile(window.innerWidth < 440);
}
return () => { return () => {
count.current = 1; count.current = 1;
}; };

View File

@@ -65,24 +65,27 @@ export default function Navpanel(props) {
Dashboard Dashboard
</a> </a>
</div> </div>
<div className="contact-detail-two"> <div className="contact-detail-twotwo">
<a <a
className="contact-link-two" className="contact-link-twotwo"
onClick={() => packUpAndLeave("cases")} onClick={() => packUpAndLeave("cases")}
> >
Cases Cases
</a> </a>
</div> </div>
<div className="contact-detail-three"> <div className="contact-detail-threethree">
<a <a
className="nav-link-three" className="nav-link-threthree"
onClick={() => packUpAndLeave("documents")} onClick={() => packUpAndLeave("documents")}
> >
Documents Documents
</a> </a>
</div> </div>
<div className="contact-detail-one"> <div className="contact-detail-one">
<a className="contact-link" onClick={() => packUpAndLeave("")}> <a
className="contact-linklink"
onClick={() => packUpAndLeave("")}
>
Blog Blog
</a> </a>
</div> </div>

View File

@@ -54,6 +54,14 @@
padding-right: 25px; padding-right: 25px;
} }
.contact-link-twotwo {
font-size: 0.95rem;
letter-spacing: 0.92rem;
color: #fff;
text-decoration: none;
padding-right: 25px;
}
.contactLinkThree { .contactLinkThree {
letter-spacing: 1rem; letter-spacing: 1rem;
text-decoration: none; text-decoration: none;
@@ -106,6 +114,15 @@
letter-spacing: 0.2rem; letter-spacing: 0.2rem;
} }
.contact-detail-twotwo {
display: flex;
flex-direction: row-reverse;
height: 38px;
margin: 12px 0px;
padding-right: 18px;
background-color: hsl(17, 100%, 61%);
}
.contact-detail-three { .contact-detail-three {
display: flex; display: flex;
flex-direction: row-reverse; flex-direction: row-reverse;
@@ -115,6 +132,15 @@
letter-spacing: 0.5rem; letter-spacing: 0.5rem;
} }
.contact-detail-threethree {
display: flex;
flex-direction: row-reverse;
height: 40px;
margin: 12px 0px;
background-color: rgb(93, 206, 255);
letter-spacing: 0.5rem;
}
.contactDetailFour { .contactDetailFour {
width: 40%; width: 40%;
background-color: orange; background-color: orange;
@@ -206,20 +232,18 @@
padding-right: 20px; padding-right: 20px;
} }
.contactLink { .nav-link-threthree {
letter-spacing: 0.2rem; color: black;
} letter-spacing: 1rem;
text-decoration: none;
padding-right: 24px;
} }
/* .contact-linklink {
.threeInner { font-size: 1rem;
display: flex; letter-spacing: 0.6rem;
margin-left: 5px; color: #fff;
height: 300px; text-decoration: none;
width: 130px; padding-right: 16px;
border-radius: 0px; }
overflow: hidden;
opacity: 0.4;
background: linear-gradient(to left, rgba(245, 246, 252, 0.52), red);
} }
*/