Skip to content

Commit

Permalink
fix code overflow ( #1 )
Browse files Browse the repository at this point in the history
Thanks @pcr910303 !
  • Loading branch information
karlicoss committed Jan 29, 2020
1 parent d79d6da commit c4d8d84
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions css/org-extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,20 @@ tbody tr td a {
}

/* end */



/* fix overflowing source blocks on mobile (https://github.com/karlicoss/beepb00p/issues/1) */
.org-src-container {
position: relative;
}

pre.src {
position: unset;
overflow: auto;
}

pre.src:before {
right: 30px;
}
/* end */

0 comments on commit c4d8d84

Please sign in to comment.