Skip to content

Commit 10760eb

Browse files
committed
Fix sale price hover color on pricing page buttons
1 parent dba8b63 commit 10760eb

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

layouts/pricing/single.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -112,34 +112,34 @@ <h3>
112112
{{ end }}
113113
</p>
114114
<div class="space-y-2">
115-
<a href="{{ .Site.LanguagePrefix }}/supporter-cert/" class="btn btn-outline-primary flex items-center justify-between text-sm">
115+
<a href="{{ .Site.LanguagePrefix }}/supporter-cert/" class="group btn btn-outline-primary flex items-center justify-between text-sm">
116116
<span>{{ i18n "pricing_individual_upgrade_dark_mode" . }}</span>
117117
<span class="font-bold">
118118
{{- if .Site.Params.paddleDesktopSalePriceId -}}
119-
<span class="text-gray-500 line-through decoration-red-600">{{ i18n "pricing_supporter_cert_price" . }}</span>
120-
<span class="text-green-600">{{ i18n "pricing_supporter_cert_price_discounted" . }}</span>
119+
<span class="text-gray-500 group-hover:text-white/70 line-through decoration-red-600">{{ i18n "pricing_supporter_cert_price" . }}</span>
120+
<span class="text-green-600 group-hover:text-white">{{ i18n "pricing_supporter_cert_price_discounted" . }}</span>
121121
{{- else -}}
122122
{{ i18n "pricing_supporter_cert_price" . }}
123123
{{- end -}}
124124
</span>
125125
</a>
126-
<a href="{{ .Site.LanguagePrefix }}/downloads/#android" class="btn btn-outline-primary flex items-center justify-between text-sm">
126+
<a href="{{ .Site.LanguagePrefix }}/downloads/#android" class="group btn btn-outline-primary flex items-center justify-between text-sm">
127127
<span>{{ i18n "pricing_individual_mobile_android" . }}</span>
128128
<span class="font-bold">
129129
{{- if .Site.Params.paddleAndroidSalePriceId -}}
130-
<span class="text-gray-500 line-through decoration-red-600">{{ i18n "pricing_android_price" . }}</span>
131-
<span class="text-green-600">{{ i18n "pricing_android_price_discounted" . }}</span>
130+
<span class="text-gray-500 group-hover:text-white/70 line-through decoration-red-600">{{ i18n "pricing_android_price" . }}</span>
131+
<span class="text-green-600 group-hover:text-white">{{ i18n "pricing_android_price_discounted" . }}</span>
132132
{{- else -}}
133133
{{ i18n "pricing_android_price" . }}
134134
{{- end -}}
135135
</span>
136136
</a>
137-
<a href="{{ .Site.LanguagePrefix }}/downloads/#ios" class="btn btn-outline-primary flex items-center justify-between text-sm">
137+
<a href="{{ .Site.LanguagePrefix }}/downloads/#ios" class="group btn btn-outline-primary flex items-center justify-between text-sm">
138138
<span>{{ i18n "pricing_individual_mobile_ios" . }}</span>
139139
<span class="font-bold">
140140
{{- if .Site.Params.paddleAndroidSalePriceId -}}
141-
<span class="text-gray-500 line-through decoration-red-600">{{ i18n "pricing_ios_price" . }}</span>
142-
<span class="text-green-600">{{ i18n "pricing_ios_price_discounted" . }}</span>
141+
<span class="text-gray-500 group-hover:text-white/70 line-through decoration-red-600">{{ i18n "pricing_ios_price" . }}</span>
142+
<span class="text-green-600 group-hover:text-white">{{ i18n "pricing_ios_price_discounted" . }}</span>
143143
{{- else -}}
144144
{{ i18n "pricing_ios_price" . }}
145145
{{- end -}}

0 commit comments

Comments
 (0)