diff --git a/src/components/navigation/sidebars/toc/Table.tsx b/src/components/navigation/sidebars/toc/Table.tsx index b3b49cf..92c133d 100644 --- a/src/components/navigation/sidebars/toc/Table.tsx +++ b/src/components/navigation/sidebars/toc/Table.tsx @@ -43,11 +43,11 @@ export const Table: Component<{ {prop => (
  • - + {prop}
  • @@ -60,11 +60,11 @@ export const Table: Component<{ {func => (
  • - + {func}
  • @@ -77,11 +77,11 @@ export const Table: Component<{ {signal => (
  • - + {signal}
  • @@ -94,11 +94,11 @@ export const Table: Component<{ {variant => (
  • - + {variant}
  • diff --git a/src/styles/docs/toc/types-toc.css b/src/styles/docs/toc/types-toc.css index ee7c769..82cd168 100644 --- a/src/styles/docs/toc/types-toc.css +++ b/src/styles/docs/toc/types-toc.css @@ -51,19 +51,29 @@ & .types-item { margin-block: 10px; - display: flex; - align-items: center; - gap: 0.478rem; + width: 100%; + transition: background-color 0.3s; + padding: 0.117rem; + padding-left: 0.338rem; + border-radius: 5px; & svg { opacity: 0.6; - width: 1.2em; - height: 1.2em; + width: 1.3rem; + height: 1.3rem; transition: opacity 0.5s; } + & a { + display: flex; + align-items: center; + gap: 0.287rem; + width: 100%; + } + &:hover { cursor: pointer; + background-color: hsla(0 0 100 / 0.07); & svg { opacity: 1;