Skip to content

Commit 8945969

Browse files
committed
chore: Use selector dt
1 parent f595097 commit 8945969

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/(proper_react)/(redesign)/(public)/LandingViewRedesign/components/PricingPlanList.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
transform: translate(-50%, -50%);
4242
}
4343

44-
&Header {
44+
dt {
4545
border-bottom: 1px solid tokens.$color-grey-10;
4646
padding: tokens.$spacing-xs tokens.$spacing-xs tokens.$spacing-lg;
4747
text-align: center;

src/app/(proper_react)/(redesign)/(public)/LandingViewRedesign/components/PricingPlanList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ export const PricingPlanList = (props: Props & ScanLimitProp) => {
288288
{pricingPlanData.map(
289289
({ type, label, title, subtitle, features, cta }) => (
290290
<dl key={type} className={styles.pricingCard} aria-label={title}>
291-
<dt className={styles.pricingCardHeader}>
291+
<dt>
292292
<b>{title}</b>
293293
{label && (
294294
<span className={styles.pricingCardLabel}>{label}</span>

0 commit comments

Comments
 (0)