Skip to content

Commit

Permalink
Merge pull request #413 from auroral-ui/fix-search-button-not-clickab…
Browse files Browse the repository at this point in the history
…le-without-multi-lang

fix: search icon is not clickable when multi-lang is off
  • Loading branch information
bennyxguo authored Nov 10, 2023
2 parents 712c486 + a4cd157 commit a782353
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 a782353

Please sign in to comment.