collapsible button width fix
This commit is contained in:
parent
1545e59dc9
commit
15a61fd4bd
|
@ -43,11 +43,11 @@ export const Table: Component<{
|
||||||
<For each={typeTOC.properties}>
|
<For each={typeTOC.properties}>
|
||||||
{prop => (
|
{prop => (
|
||||||
<li class="types-item props-item">
|
<li class="types-item props-item">
|
||||||
<Tag />
|
|
||||||
<a
|
<a
|
||||||
class="type-anchor"
|
class="type-anchor"
|
||||||
href={`#${prop}`}
|
href={`#${prop}`}
|
||||||
>
|
>
|
||||||
|
<Tag />
|
||||||
{prop}
|
{prop}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -60,11 +60,11 @@ export const Table: Component<{
|
||||||
<For each={typeTOC.functions}>
|
<For each={typeTOC.functions}>
|
||||||
{func => (
|
{func => (
|
||||||
<li class="types-item func-item">
|
<li class="types-item func-item">
|
||||||
<RoundBrackets />
|
|
||||||
<a
|
<a
|
||||||
class="type-anchor"
|
class="type-anchor"
|
||||||
href={`#${func}`}
|
href={`#${func}`}
|
||||||
>
|
>
|
||||||
|
<RoundBrackets />
|
||||||
{func}
|
{func}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -77,11 +77,11 @@ export const Table: Component<{
|
||||||
<For each={typeTOC.signals}>
|
<For each={typeTOC.signals}>
|
||||||
{signal => (
|
{signal => (
|
||||||
<li class="types-item signals-item">
|
<li class="types-item signals-item">
|
||||||
<PowerCord />
|
|
||||||
<a
|
<a
|
||||||
class="type-anchor"
|
class="type-anchor"
|
||||||
href={`#${signal}`}
|
href={`#${signal}`}
|
||||||
>
|
>
|
||||||
|
<PowerCord />
|
||||||
{signal}
|
{signal}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -94,11 +94,11 @@ export const Table: Component<{
|
||||||
<For each={typeTOC.variants}>
|
<For each={typeTOC.variants}>
|
||||||
{variant => (
|
{variant => (
|
||||||
<li class="types-item vars-item">
|
<li class="types-item vars-item">
|
||||||
<FourDiamonds />
|
|
||||||
<a
|
<a
|
||||||
class="type-anchor"
|
class="type-anchor"
|
||||||
href={`#${variant}`}
|
href={`#${variant}`}
|
||||||
>
|
>
|
||||||
|
<FourDiamonds />
|
||||||
{variant}
|
{variant}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -51,19 +51,29 @@
|
||||||
|
|
||||||
& .types-item {
|
& .types-item {
|
||||||
margin-block: 10px;
|
margin-block: 10px;
|
||||||
display: flex;
|
width: 100%;
|
||||||
align-items: center;
|
transition: background-color 0.3s;
|
||||||
gap: 0.478rem;
|
padding: 0.117rem;
|
||||||
|
padding-left: 0.338rem;
|
||||||
|
border-radius: 5px;
|
||||||
|
|
||||||
& svg {
|
& svg {
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
width: 1.2em;
|
width: 1.3rem;
|
||||||
height: 1.2em;
|
height: 1.3rem;
|
||||||
transition: opacity 0.5s;
|
transition: opacity 0.5s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
& a {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.287rem;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
background-color: hsla(0 0 100 / 0.07);
|
||||||
|
|
||||||
& svg {
|
& svg {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
|
Loading…
Reference in a new issue