File tree Expand file tree Collapse file tree 5 files changed +5
-46
lines changed Expand file tree Collapse file tree 5 files changed +5
-46
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
< html lang ="en ">
3
3
< head >
4
4
< meta charset ="utf-8 " />
5
- < link rel ="icon " href ="%PUBLIC_URL%/images/logo.svg " />
5
+ < link rel ="icon " href ="%PUBLIC_URL%/images/logo.png " />
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1 " />
7
7
< meta name ="theme-color " content ="#000000 " />
8
8
< meta
9
9
name ="description "
10
10
content ="WhoDB is the next-generation database explorer "
11
11
/>
12
- < link rel ="apple-touch-icon " href ="%PUBLIC_URL%/images/logo.svg " />
12
+ < link rel ="apple-touch-icon " href ="%PUBLIC_URL%/images/logo.png " />
13
13
<!--
14
14
manifest.json provides metadata used when your web app is installed on a
15
15
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ export const Sidebar: FC = () => {
305
305
}
306
306
} } animate = { animate } >
307
307
< div className = "flex gap-2" >
308
- < img src = "https://clidey.com/ logo.svg " alt = "clidey logo" className = "w-8 h-8" />
308
+ < img src = "/images/ logo.png " alt = "clidey logo" className = "w-auto h-8" />
309
309
< span className = { classNames ( BRAND_COLOR , "text-2xl" ) } > WhoDB</ span >
310
310
</ div >
311
311
</ motion . div >
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ export const ExploreStorageUnitWhereCondition: FC<IExploreStorageUnitWhereCondit
155
155
< AnimatePresence mode = "wait" >
156
156
{
157
157
newFilter &&
158
- < motion . div className = "flex gap-1 z-[5] py-2 px-4 absolute top-full mt-1 rounded-lg shadow-md border border-neutral-100 dark:border-white/5 dark:bg-white/20 dark:backdrop-blur-xl translate-y-full bg-white" initial = { {
158
+ < motion . div className = "flex gap-1 z-[5] py-2 px-4 absolute top-full mt-1 rounded-lg shadow-md border border-neutral-100 dark:border-white/5 dark:bg-white/20 translate-y-full bg-white" initial = { {
159
159
y : - 10 ,
160
160
opacity : 0 ,
161
161
} } animate = { {
@@ -165,6 +165,7 @@ export const ExploreStorageUnitWhereCondition: FC<IExploreStorageUnitWhereCondit
165
165
y : - 10 ,
166
166
opacity : 0 ,
167
167
} } >
168
+ < div className = "hidden absolute inset-0 rounded-lg dark:flex dark:backdrop-blur-xl -z-[1]" />
168
169
< Dropdown noItemsLabel = "No fields found" className = "min-w-[100px]" value = { createDropdownItem ( currentFilter . field ) } items = { fieldsDropdownItems } onChange = { handleFieldSelect } />
169
170
< Dropdown noItemsLabel = "No operators found" className = "min-w-20" value = { createDropdownItem ( currentFilter . operator ) } items = { validOperators } onChange = { handleOperatorSelector } />
170
171
< Input inputProps = { {
You can’t perform that action at this time.
0 commit comments