hyde icon indicating copy to clipboard operation
hyde copied to clipboard

Feedback

Open tkruse opened this issue 8 years ago • 1 comments

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;
  }

tkruse avatar Sep 30 '15 21:09 tkruse

Actually, I also needed:

@media (min-width: 48em) {
  .sidebar-sticky {
    position: absolute;
    right:  1rem;
    bottom: 1rem;
    left:   1rem;
+    top:    1rem;
  }
}

tkruse avatar Oct 01 '15 11:10 tkruse