/* Fix code blocks on mobile: horizontal scroll instead of wrapping */
@media (max-width: 684px) {
  pre {
    white-space: pre !important;
    word-wrap: normal !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
