fix: bad visibility for last explorer item (#478)

* fix: bad visibility for last explorer item

* feat(explorer): add pseudo element for observer
This commit is contained in:
Ben Schlegel
2023-09-17 22:04:44 +02:00
committed by GitHub
parent a9cdd5ff27
commit f030418822
3 changed files with 34 additions and 3 deletions

View File

@ -131,3 +131,12 @@ div:has(> .folder-outer:not(.open)) > .folder-container > svg {
.folder-icon:hover {
color: var(--tertiary);
}
.no-background::after {
background: none !important;
}
#explorer-end {
// needs height so IntersectionObserver gets triggered
height: 1px;
}