/* Below is the code necessary to handle
   the sheet modal swipe handler when the
   sheet is open
*/
.swipe-handler:after {
  content: '';
  width: 36px;
  height: 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -18px;
  margin-top: -3px;
  border-radius: 3px;
  background: #666
}


/* Limit resizable panel width */
.panel {
  min-width: 100px;
  max-width: 90vw;
}


/* Disable text selection */
@media only screen and (min-width: 800px) {
  body {
    -webkit-user-select: none;
    -webkit-tap-highligth-color: transparent;
    -webkit-touch-callout: none;
  }
}
