Skip to content

Commit 67c8c4b

Browse files
authored
fix: fix the abnormal input height issue (#1006)
* fix: fix the abnormal input height issue * docs: update changelog
1 parent b5f5d3b commit 67c8c4b

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

docs/content.en/docs/release-notes/_index.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@ title: "Release Notes"
77

88
Information about release notes of Coco App is provided here.
99

10-
## Latest (In development)
11-
### ❌ Breaking changes
12-
### 🚀 Features
13-
### 🐛 Bug fix
14-
### ✈️ Improvements
10+
## Latest (In development)
11+
12+
### ❌ Breaking changes
13+
14+
### 🚀 Features
15+
16+
### 🐛 Bug fix
17+
18+
- fix: fix the abnormal input height issue #1006
19+
20+
### ✈️ Improvements
1521

1622
## 0.9.1 (2025-12-05)
1723

src/components/Search/ExtensionStore.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ const ExtensionStore = ({ extensionId }: { extensionId?: string }) => {
306306
<div
307307
key={id}
308308
className={clsx(
309-
"flex justify-between gap-4 h-[40px] px-2 rounded-lg cursor-pointer text-[#333] dark:text-[#d8d8d8] transition",
309+
"flex justify-between gap-4 h-10 px-2 rounded-lg cursor-pointer text-[#333] dark:text-[#d8d8d8] transition",
310310
{
311311
"bg-black/10 dark:bg-white/15":
312312
selectedExtension?.id === id,

src/components/Search/SearchIcons.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const MultilevelWrapper: FC<MultilevelWrapperProps> = (props) => {
3636
<div
3737
data-tauri-drag-region
3838
className={clsx(
39-
"flex items-center h-[40px] gap-1 px-2 border border-[#EDEDED] dark:border-[#202126] rounded-l-lg",
39+
"flex items-center h-10 gap-1 px-2 border border-[#EDEDED] dark:border-[#202126] rounded-l-lg",
4040
{
4141
"justify-center": visibleSearchBar(),
4242
"w-[calc(100vw-16px)] rounded-r-lg": !visibleSearchBar(),
@@ -115,7 +115,7 @@ export default function SearchIcons({
115115
}
116116

117117
return (
118-
<div className="flex items-center justify-center pl-2 h-[40px] bg-[#ededed] dark:bg-[#202126]">
118+
<div className="flex items-center justify-center pl-2 h-10 bg-[#ededed] dark:bg-[#202126]">
119119
<Search className="w-4 h-4 text-[#ccc] dark:text-[#d8d8d8]" />
120120
</div>
121121
);

0 commit comments

Comments
 (0)