mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Website: update default pricing switch position (#11268)
closes: #11264 Changes: - Swapped the position of the "Security" and "IT" options of the switch on the pricing page.
This commit is contained in:
parent
5abff8cbfc
commit
a2d8a15a2b
2 changed files with 3 additions and 3 deletions
2
website/assets/styles/pages/pricing.less
vendored
2
website/assets/styles/pages/pricing.less
vendored
|
|
@ -68,7 +68,7 @@
|
|||
z-index: 3;
|
||||
user-select: none;
|
||||
}
|
||||
.it-selected {
|
||||
.security-selected {
|
||||
transform: translateX(140px);
|
||||
}
|
||||
|
||||
|
|
|
|||
4
website/views/pages/pricing.ejs
vendored
4
website/views/pages/pricing.ejs
vendored
|
|
@ -7,9 +7,9 @@
|
|||
</h2>
|
||||
</div>
|
||||
<div purpose="pricing-switch" class="d-flex flex-row justify-content-center mx-auto mb-5" @click="displaySecurityPricingMode = !displaySecurityPricingMode">
|
||||
<div purpose="pricing-switch-option" :class="[displaySecurityPricingMode ? 'selected' : '']">Security</div>
|
||||
<div purpose="pricing-switch-option" :class="[!displaySecurityPricingMode ? 'selected' : '']">IT</div>
|
||||
<div purpose="pricing-tier-switch" :class="[!displaySecurityPricingMode ? 'it-selected' : '']"></div>
|
||||
<div purpose="pricing-switch-option" :class="[displaySecurityPricingMode ? 'selected' : '']">Security</div>
|
||||
<div purpose="pricing-tier-switch" :class="[displaySecurityPricingMode ? 'security-selected' : '']"></div>
|
||||
</div>
|
||||
<h4 class="pb-4 mb-4 text-center" v-if="displaySecurityPricingMode">Always cross-platform, always secure. You will always have control over read/write privileges.</h4>
|
||||
<h4 class="pb-4 mb-4 text-center" v-else>You will always have control over your machines regardless of platform.</h4>
|
||||
|
|
|
|||
Loading…
Reference in a new issue