mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-26 23:31:53 +00:00
Merge pull request #19749 from overleaf/jel-fix-first-feature-row-border
[web] Fix first feature row border radius on light touch plans redesign GitOrigin-RevId: 2ef5b1cbb13284a95d6c5d9370cd003f4ccf7f48
This commit is contained in:
parent
c4c36c9cea
commit
214f093eb7
1 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ mixin plans_table(period, config)
|
|||
.plans-table-btn-buy-container-desktop
|
||||
+plans_cta(tableHeadKey, highlighted, eventTrackingKey, additionalEventSegmentation, period)
|
||||
|
||||
for featuresPerSection in config.features
|
||||
for featuresPerSection, featuresSectionIndex in config.features
|
||||
- var dividerColspan = Object.values(config.tableHead).length + 1
|
||||
if featuresPerSection.divider
|
||||
tr.plans-table-divider
|
||||
|
@ -163,7 +163,7 @@ mixin plans_table(period, config)
|
|||
event-tracking-ga="subscription-funnel"
|
||||
event-tracking-label=`${feature.feature}`
|
||||
scope="row"
|
||||
class=`${featureIndex === 0 ? 'plans-table-first-feature-header' : ''}`
|
||||
class=`${featuresSectionIndex === 0 && featureIndex === 0 ? 'plans-table-first-feature-header' : ''}`
|
||||
)
|
||||
.plans-table-feature-name
|
||||
.plans-table-feature-name-content
|
||||
|
|
Loading…
Reference in a new issue