Jacky Zhao
2025-03-31 f70e562432ca251d4c4373dfa0b02dcde11297bc
quartz/components/styles/toc.scss
@@ -5,19 +5,20 @@
  flex-direction: column;
  overflow-y: hidden;
  min-height: 4rem;
  flex: 0 1 auto;
  &:has(button#toc.collapsed) {
  &:has(button.toc-header.collapsed) {
    flex: 0 1 1.2rem;
  }
}
@media all and not ($mobile) {
  .toc {
  .toc-header {
    display: flex;
  }
}
button#toc {
button.toc-header {
  background-color: transparent;
  border: none;
  text-align: left;
@@ -44,23 +45,21 @@
  }
}
#toc-content {
ul.toc-content {
  list-style: none;
  position: relative;
  margin: 0.5rem 0;
  padding: 0;
  & ul {
    list-style: none;
    margin: 0.5rem 0;
    padding: 0;
    & > li > a {
      color: var(--dark);
      opacity: 0.35;
      transition:
        0.5s ease opacity,
        0.3s ease color;
      &.in-view {
        opacity: 0.75;
      }
  list-style: none;
  & > li > a {
    color: var(--dark);
    opacity: 0.35;
    transition:
      0.5s ease opacity,
      0.3s ease color;
    &.in-view {
      opacity: 0.75;
    }
  }