HiNinoJay / hexo-theme-A4

A hexo theme that looks like an A4 paper.(一个类A4纸张质感的hexo博客主题。)
https://ninojay.top
MIT License
313 stars 22 forks source link

fix: footer.ejs结构简化及对应样式修改 #18

Closed llsccm closed 1 year ago

llsccm commented 1 year ago
HiNinoJay commented 1 year ago

thanks

HiNinoJay commented 1 year ago

我刚看了一下,你这个实现方式,页面在移动端,显示不够友好

我之前的想法是,移动端,底部左右信息,就居中各占一行

还得微调下响应式设计,我是这样修改的: 增加一个footer-last响应式css,把 flex-direction: 改为 column即可。

@media only screen and (max-width: 600px) {
    .footer-last
    {
        flex-direction: column;
    }
}
llsccm commented 1 year ago

我刚看了一下,你这个实现方式,页面在移动端,显示不够友好

我之前的想法是,移动端,底部左右信息,就居中各占一行

还得微调下响应式设计

style.css:331

@media only screen and (max-width: 600px) {
    .footer-last {
        flex-direction: column;
    }
  }

是喔 忘记改响应式了