Skip to content

Commit

Permalink
fix: search icon is not clickable when multi-lang is off
Browse files Browse the repository at this point in the history
  • Loading branch information
bennyxguo committed Nov 10, 2023
1 parent 712c486 commit a4cd157
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/Header/src/Controls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,13 @@ export default defineComponent({
.left-control,
.right-control {
@apply flex justify-center items-center font-extrabold;
@apply flex relative left-0 justify-center items-center font-extrabold;
}
.right-control {
@apply z-40;
}
.left-control {
@apply -mr-10;
@apply -mr-10 z-50;
transition: 0.2s margin ease-out;
&.moved-right {
@apply -mr-0;
Expand Down

0 comments on commit a4cd157

Please sign in to comment.