| | |
| | | @use "../../styles/variables.scss" as *; |
| | | |
| | | .explorer { |
| | | display: flex; |
| | | flex-direction: column; |
| | | overflow-y: hidden; |
| | | &.desktop-only { |
| | | overflow-y: auto; |
| | | @media all and not ($mobile) { |
| | | display: flex; |
| | | } |
| | | } |
| | | &:after { |
| | | pointer-events: none; |
| | |
| | | #explorer-content { |
| | | list-style: none; |
| | | overflow: hidden; |
| | | max-height: none; |
| | | overflow-y: auto; |
| | | max-height: 100%; |
| | | transition: |
| | | max-height 0.35s ease, |
| | | visibility 0s linear 0s; |
| | |
| | | visibility: visible; |
| | | |
| | | &.collapsed { |
| | | max-height: 0; |
| | | transition: |
| | | max-height 0.35s ease, |
| | | visibility 0s linear 0.35s; |