xiangming / landscape-plus

针对中国大陆地区对hexo官方主题landscape进行优化。
http://xiangming.github.io/landscape-plus/
MIT License
508 stars 107 forks source link

可以设置在移动端不显示右侧小工具吗 #63

Closed tiexo closed 9 years ago

tiexo commented 9 years ago

手机上浏览,下面拖了一大坨感觉不好看==。

xiangming commented 9 years ago

你可以修改landscape-plus\source\css\_partial\sidebar-aside.styl文件的下面这段代码:

#sidebar
  @media mq-normal
    column(sidebar-column)

修改为:

#sidebar
  @media mq-normal
    column(sidebar-column)
  @media mq-mobile
    display: none

然后运行下面的命令,清理并重新生成:

hexo clean

hexo generate
tiexo commented 9 years ago

非常感谢,已解决,主题十分漂亮呀~~~