fix(backport): cross button hover (#6416)

This commit is contained in:
Dhruwang Jariwala
2025-08-14 18:00:05 +05:30
committed by GitHub
parent 87a2d727ed
commit 1091b40bd1
@@ -765,7 +765,7 @@ export function Survey({
<LanguageSwitch
surveyLanguages={localSurvey.languages}
setSelectedLanguageCode={setselectedLanguage}
hoverColor={styling.inputColor?.light ?? "#000000"}
hoverColor={styling.inputColor?.light ?? "#f8fafc"}
borderRadius={styling.roundness ?? 8}
/>
)}
@@ -776,7 +776,7 @@ export function Survey({
{isCloseButtonVisible && (
<SurveyCloseButton
onClose={onClose}
hoverColor={styling.inputColor?.light ?? "#000000"}
hoverColor={styling.inputColor?.light ?? "#f8fafc"}
borderRadius={styling.roundness ?? 8}
/>
)}