hyde
hyde copied to clipboard
Feedback
Hi, I like Poole. Quick feedback:
Some media query css for print view (e.g. without sidebar) would be nice.
Also the sidebar would not scroll with the version I used. I think I fixed with:
.sidebar {
overflow-y: scroll;
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 18rem;
text-align: left;
}
Actually, I also needed:
@media (min-width: 48em) {
.sidebar-sticky {
position: absolute;
right: 1rem;
bottom: 1rem;
left: 1rem;
+ top: 1rem;
}
}