Skip to content

Commit abf9223

Browse files
committed
chore: fix build
1 parent 35afcee commit abf9223

1 file changed

Lines changed: 14 additions & 20 deletions

File tree

app/pages/index.vue

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function onMouseMove(event: MouseEvent) {
100100
:placeholder="$t('search.placeholder')"
101101
no-correct
102102
size="large"
103-
class="w-full ps-8 pe-24"
103+
class="w-full ps-8 pe-24 bg-bg-subtle/90! backdrop-blur-sm"
104104
@focus="isSearchFocused = true"
105105
@blur="isSearchFocused = false"
106106
/>
@@ -159,25 +159,19 @@ function onMouseMove(event: MouseEvent) {
159159
}
160160
}
161161
162-
.home-input-wrapper {
163-
&::before {
164-
content: '';
165-
@apply absolute -inset-0.5 rounded-[0.875rem] -z-1;
166-
background: linear-gradient(
167-
-80deg,
168-
transparent 0%,
169-
var(--accent) 5%,
170-
var(--accent) 75%,
171-
transparent 80%
172-
);
173-
background-size: 300% 100%;
174-
background-position: var(--mouse-x, 0) var(--mouse-y, 0);
175-
opacity: 0.5;
176-
}
177-
178-
input {
179-
@apply bg-bg-subtle/90 backdrop-blur-sm;
180-
}
162+
.home-input-wrapper::before {
163+
content: '';
164+
@apply absolute -inset-0.5 rounded-[0.875rem] -z-1;
165+
background: linear-gradient(
166+
-80deg,
167+
transparent 0%,
168+
var(--accent) 5%,
169+
var(--accent) 75%,
170+
transparent 80%
171+
);
172+
background-size: 300% 100%;
173+
background-position: var(--mouse-x, 0) var(--mouse-y, 0);
174+
opacity: 0.5;
181175
}
182176
183177
@keyframes glide {

0 commit comments

Comments
 (0)