mirror of
https://github.com/infinilabs/coco-app.git
synced 2025-12-16 03:27:43 +01:00
fix: fix the abnormal input height issue (#1006)
* fix: fix the abnormal input height issue * docs: update changelog
This commit is contained in:
@@ -7,11 +7,17 @@ title: "Release Notes"
|
|||||||
|
|
||||||
Information about release notes of Coco App is provided here.
|
Information about release notes of Coco App is provided here.
|
||||||
|
|
||||||
## Latest (In development)
|
## Latest (In development)
|
||||||
### ❌ Breaking changes
|
|
||||||
### 🚀 Features
|
### ❌ Breaking changes
|
||||||
### 🐛 Bug fix
|
|
||||||
### ✈️ Improvements
|
### 🚀 Features
|
||||||
|
|
||||||
|
### 🐛 Bug fix
|
||||||
|
|
||||||
|
- fix: fix the abnormal input height issue #1006
|
||||||
|
|
||||||
|
### ✈️ Improvements
|
||||||
|
|
||||||
## 0.9.1 (2025-12-05)
|
## 0.9.1 (2025-12-05)
|
||||||
|
|
||||||
|
|||||||
@@ -306,7 +306,7 @@ const ExtensionStore = ({ extensionId }: { extensionId?: string }) => {
|
|||||||
<div
|
<div
|
||||||
key={id}
|
key={id}
|
||||||
className={clsx(
|
className={clsx(
|
||||||
"flex justify-between gap-4 h-[40px] px-2 rounded-lg cursor-pointer text-[#333] dark:text-[#d8d8d8] transition",
|
"flex justify-between gap-4 h-10 px-2 rounded-lg cursor-pointer text-[#333] dark:text-[#d8d8d8] transition",
|
||||||
{
|
{
|
||||||
"bg-black/10 dark:bg-white/15":
|
"bg-black/10 dark:bg-white/15":
|
||||||
selectedExtension?.id === id,
|
selectedExtension?.id === id,
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ const MultilevelWrapper: FC<MultilevelWrapperProps> = (props) => {
|
|||||||
<div
|
<div
|
||||||
data-tauri-drag-region
|
data-tauri-drag-region
|
||||||
className={clsx(
|
className={clsx(
|
||||||
"flex items-center h-[40px] gap-1 px-2 border border-[#EDEDED] dark:border-[#202126] rounded-l-lg",
|
"flex items-center h-10 gap-1 px-2 border border-[#EDEDED] dark:border-[#202126] rounded-l-lg",
|
||||||
{
|
{
|
||||||
"justify-center": visibleSearchBar(),
|
"justify-center": visibleSearchBar(),
|
||||||
"w-[calc(100vw-16px)] rounded-r-lg": !visibleSearchBar(),
|
"w-[calc(100vw-16px)] rounded-r-lg": !visibleSearchBar(),
|
||||||
@@ -115,7 +115,7 @@ export default function SearchIcons({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center justify-center pl-2 h-[40px] bg-[#ededed] dark:bg-[#202126]">
|
<div className="flex items-center justify-center pl-2 h-10 bg-[#ededed] dark:bg-[#202126]">
|
||||||
<Search className="w-4 h-4 text-[#ccc] dark:text-[#d8d8d8]" />
|
<Search className="w-4 h-4 text-[#ccc] dark:text-[#d8d8d8]" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user