mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Website: update tooltip position on mobile IT features table (#22018)
Closes: https://github.com/fleetdm/fleet/issues/22016 Changes: - Updated the position of the tooltip icons on the mobile IT pricing features table
This commit is contained in:
parent
d958e05096
commit
ad9b98b0ce
1 changed files with 3 additions and 3 deletions
6
website/views/pages/pricing.ejs
vendored
6
website/views/pages/pricing.ejs
vendored
|
|
@ -196,11 +196,11 @@
|
|||
<div purpose="mobile-feature-table-section" class="d-block d-md-none" v-for="category in pricingTableForIt">
|
||||
<h5>{{category.categoryName}}</h5>
|
||||
<div purpose="mobile-features-table" class="d-flex flex-column" v-for="feature in category.features">
|
||||
<div purpose="striped-row" class="d-flex flex-row justify-content-between align-items-center" @click="">
|
||||
<strong>
|
||||
<div purpose="striped-row" class="d-flex flex-row justify-content-between align-items-center">
|
||||
<strong class="d-block">
|
||||
{{feature.name}}{{feature.comingSoon ? '*' : ''}}
|
||||
<img class="d-inline" purpose="tooltip-icon" src="/images/icon-more-info-14x14@2x.png" alt="More info" @click="clickOpenMobileTooltip(feature)" v-if="feature.description">
|
||||
</strong>
|
||||
<img class="d-block" purpose="tooltip-icon" src="/images/icon-more-info-14x14@2x.png" alt="More info" @click="clickOpenMobileTooltip(feature)" v-if="feature.description">
|
||||
</div>
|
||||
<div class="d-flex flex-row justify-content-between align-items-center">
|
||||
Free
|
||||
|
|
|
|||
Loading…
Reference in a new issue