rm arrows

This commit is contained in:
akcodez
2025-06-11 10:16:19 -07:00
parent a7fd85618b
commit 8d72c91e4f
3 changed files with 1 additions and 30 deletions

View File

@@ -148,7 +148,6 @@ function FeatureCard({ title, description }) {
<header className="feature-header">
<h2 className="feature-title">
{translate(title)}
<span className="feature-arrow" aria-hidden="true"></span>
</h2>
</header>
<p className="feature-description">{translate(description)}</p>

File diff suppressed because one or more lines are too long

View File

@@ -1942,34 +1942,6 @@ html.light {
padding-right: 30px;
justify-content: flex-start;
}
.feature-arrow {
display: inline-block;
content: '';
width: 16px;
height: 16px;
background-image: url('../img/icons/arrow-right-purple.svg');
background-size: contain;
background-repeat: no-repeat;
background-position: left center;
flex-shrink: 0;
@media (min-width: 1200px) {
width: 100%;
order: 2;
margin-top: 8px;
margin-left: 0;
background-position: left center;
align-self: flex-start;
}
@media (max-width: 1199px) {
position: absolute;
right: 0;
top: 5px;
margin-left: 16px;
}
}
}
.feature-icon {