Skip to content

Commit f77f22c

Browse files
authored
fixed the styles of the multi language filter button
The wrapper div of the multi language filter button have the class "group-hover/multi-language-toggle:opacity-100", but the div which holds the actual text it self have the class "group-hover/dark-mode-toggle:opacity-100". Which prevented it from having the hover effect of the text. I fixed it by applying the correct class name, "multi-language-toggle" instead of "dark-mode-toggle".
1 parent e7cbfa1 commit f77f22c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/components/plugins/list.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ class="group/multi-language-toggle flex cursor-pointer select-none items-center
402402
class="text-sm transition duration-300"
403403
:class="{
404404
'text-salmon': features.translations,
405-
'opacity-70 text-dolphin group-hover/dark-mode-toggle:opacity-100': ! features.translations,
405+
'opacity-70 text-dolphin group-hover/multi-language-toggle:opacity-100': ! features.translations,
406406
}"
407407
>
408408
Multi language

0 commit comments

Comments
 (0)