Skip to content

Commit

Permalink
fix(css): media-queryでモバイル時はGithubボタンを非表示に
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Jun 3, 2014
1 parent d4d1534 commit d08221e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion public/css/overload.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@ li > a.sc-current-element:before {
right: 0;
border: 0;
}
@media only screen {
.github-ribbon{
display: none;
}
}
@media only screen and (min-width: 768px) {
.github-ribbon{
display: hidden;
display: block;
}
}

0 comments on commit d08221e

Please sign in to comment.