This commit is contained in:
Kenneth Jannette
2024-01-11 19:17:59 -06:00
parent 00ede0f837
commit 69b6511686
2 changed files with 39 additions and 0 deletions

View File

@@ -14,6 +14,9 @@ const FeaturesPage = () => {
<> <>
<div className="features-container"> <div className="features-container">
<div className="features-top-wrapper"> <div className="features-top-wrapper">
<div className="features-top-mobile-img">
<img className="features-image-one" src={legalTechFlip} />
</div>
<div className="features-top-left"> <div className="features-top-left">
<FeaturesTop /> <FeaturesTop />
</div> </div>

View File

@@ -78,20 +78,56 @@
margin: 28px 0px; margin: 28px 0px;
} }
.features-top-mobile-img {
display: none;
}
@media only screen and (max-width: 430px) { @media only screen and (max-width: 430px) {
.features-top-wrapper { .features-top-wrapper {
flex-direction: column; flex-direction: column;
} }
.features-top-left { .features-top-left {
width: 100%; width: 100%;
} }
.features-top-right { .features-top-right {
width: 100%; width: 100%;
} }
.features-bottom-left { .features-bottom-left {
width: 100%; width: 100%;
} }
.features-bottom-right { .features-bottom-right {
width: 100%; width: 100%;
} }
.features-header-text {
margin-top: -8px;
}
.features-list-item {
width: 98%;
text-align: justify;
font-size: 0.94rem;
margin: 6px 0px;
}
.features-top-right {
display: none;
}
.features-top-mobile-img {
display: flex;
}
.features-image-one {
display: flex;
flex-direction: column;
margin-right: 10px;
height: 300px;
float: right;
border-radius: 15px;
}
} }