diff options
author | Tommy Chen <tommy351@gmail.com> | 2012-06-03 06:26:54 +0200 |
---|---|---|
committer | Tommy Chen <tommy351@gmail.com> | 2012-06-03 06:26:54 +0200 |
commit | 3a71857545377a08099f89a719bc2420b5ddf85b (patch) | |
tree | becce8e20ec2261f0133437fda208cb7dbe3c5ed | |
parent | 4c4714679b62a9509ddf619ae56bdbb345d42695 (diff) | |
download | octopress-theme-jeyzu-3a71857545377a08099f89a719bc2420b5ddf85b.zip octopress-theme-jeyzu-3a71857545377a08099f89a719bc2420b5ddf85b.tar.gz |
hide archive link when screen width less than 400px
-rw-r--r-- | sass/parts/_index.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sass/parts/_index.scss b/sass/parts/_index.scss index e20323b..f833fb9 100644 --- a/sass/parts/_index.scss +++ b/sass/parts/_index.scss @@ -26,5 +26,8 @@ text-align: center; width: 100%; display: block; + @media screen and (max-width: 400px){ + display: none; + } } }
\ No newline at end of file |