This commit is contained in:
2026-02-12 17:57:30 -06:00
parent efaf2fb169
commit 2ae714db48
9 changed files with 95 additions and 90 deletions

View File

@@ -174,7 +174,6 @@ tr {
margin-bottom: 0px;
margin-left: 0rem;
background-color: #1a1a1a;
width: 100vw;
z-index: 99;
position: sticky;
top: 0;
@@ -522,7 +521,6 @@ tr {
}
.skill {
display: none;
padding: .2em;
color: rgb(235, 235, 235);
}
@@ -535,19 +533,25 @@ tr {
color: rgb(170, 170, 170);
}
#skillTree > .skill {
display: block;
.skill-children {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows 0.3s ease;
}
.skill > .skill {
.skill.activeSkill > .skill-children {
grid-template-rows: 1fr;
}
.skill-children-inner {
overflow: hidden;
}
.skill-children-inner > .skill {
font-size: large !important;
padding-left: .5em;
}
.skill.activeSkill > .skill {
display: block !important;
}
.skill > .skillname {
text-decoration: underline;
cursor: pointer;