mirror of
https://github.com/euzu/tuliprox.git
synced 2026-09-25 10:32:15 +02:00
29 lines
469 B
SCSS
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);
|
|
} |