Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix #86 -- fix Lanyon listing overflow
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Jun 27, 2016
1 parent 71a7183 commit ffb28c9
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions v7/lanyon/assets/css/poole.css
Expand Up @@ -162,12 +162,12 @@ code {
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
padding: 1rem;
margin-bottom: 0;
padding: 0;
font-size: .8rem;
line-height: 1.4;
white-space: pre;
white-space: pre-wrap;
overflow: auto;
word-break: break-all;
word-wrap: break-word;
background-color: #f9f9f9;
Expand Down Expand Up @@ -428,3 +428,12 @@ a.pagination-item:hover {
border-bottom-right-radius: 4px;
}
}

/* Nikola fixes */
.codetable {
table-layout: fixed;
}

.codetable pre {
overflow-x: scroll;
}

0 comments on commit ffb28c9

Please sign in to comment.