Skip to content

Commit

Permalink
fix(css): Webkit系で横にスクロールが置きてしまう問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Jun 3, 2014
1 parent d08221e commit 170a219
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions public/css/overload.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,24 @@ li > a.sc-current-element:before {
right: 0;
border: 0;
}

/* 幅が狭いと横にスクロール出来てしまう問題 */
.article a {
word-wrap: break-word;
}

.article table {
table-layout: fixed;
}

@media only screen {
.github-ribbon{
.github-ribbon {
display: none;
}
}

@media only screen and (min-width: 768px) {
.github-ribbon{
.github-ribbon {
display: block;
}
}

0 comments on commit 170a219

Please sign in to comment.