Files
2025-08-28 01:00:18 +02:00

29 lines
469 B
SCSS

.tp__hide-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--gap-default);
cursor: pointer;
fill: var(--modest-text-color);
box-sizing: border-box;
width: 100%;
&:hover {
fill: var(--text-color);
}
&__text {
overflow: hidden;
}
.svg-icon {
width: 1.2rem;
height: 1.2rem;
min-height: 1.2rem;
min-width: 1.2rem;
}
}
.tp__hide-content.active {
fill: var(--tag-active-color);
}