Skip to content

Commit 5034aeb

Browse files
committed
update styles
1 parent 5ad497f commit 5034aeb

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/components/Tooling/Content/Content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const Content = ({ tools, toolsMarkdown }) => {
6262
}, [selectedTool])
6363

6464
const filteredTools = useMemo(() => {
65-
setSelectedTool(null)
65+
// setSelectedTool(null)
6666
return tools.filter((tool) => {
6767
const categoryMatch =
6868
searchParams.category.length === 0 ||

src/components/Tooling/Content/List/List.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const List = ({ tools, onChange, selectedTool }) => {
2424
<div className={styles.toolName}>
2525
{tool.remarkPluginFrontmatter.name}
2626
<svg
27-
className="ml-[8px] mr-[25px]"
27+
className="ml-[8px] mr-[25px] hover:opacity-70"
2828
xmlns="http://www.w3.org/2000/svg"
2929
width="12"
3030
height="15"

src/components/Tooling/Content/NetworkSelector/NetworkSelector.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
height: 40px;
33
width: 218px;
44
position: relative;
5+
z-index: 1;
56
}
67

78
.networkSelector {

0 commit comments

Comments
 (0)