index-main/assets/css/components/_details-summary.scss
Julie Blanc a0f0110fa6
All checks were successful
Deploy / Deploy to Production (push) Successful in 14s
hover card with bg
2026-01-28 01:03:42 +01:00

46 lines
No EOL
815 B
SCSS

@mixin details-summary(){
summary,
.summary-inner{
display: flex;
align-items: center;
cursor: pointer;
gap: 0.5ch;
}
.arrow-details{
line-height: 0;
--size: 11px;
height: var(--size);
width: var(--size);
display: inline-flex;
align-items: center;
justify-content: center;
position: relative;
top: -2px;
svg{
transition: transform 0.2s ease-in;
width: 100%;
fill: var(--color-txt);
}
}
summary:hover{
color: var(--color-txt);
.arrow-details svg{
fill: var(--color-txt);
}
}
&[open]{
.arrow-details svg{
transform: rotate(90deg);
}
}
}