saicaca / hexo-theme-vivia

A clean and minimalist theme for Hexo.
https://saicaca.github.io/vivia-preview/
MIT License
329 stars 40 forks source link

Bug:在部分分辨率屏幕下会导致屏幕右侧留白 #42

Closed HyperCherry closed 7 months ago

HyperCherry commented 7 months ago

测试分辨率:1025*753(平板设备)

在某些分辨率中的屏幕中,若水平像素值不足以在footer右侧留下足够的缝隙,将会导致右侧出现一段留白 image

https://github.com/saicaca/hexo-theme-vivia/blob/215aa41fd040268c45bfdc75d65feeb6343caf3c/source/css/_partial/back-to-top.styl#L1-L6

由于right: -84px将会导致右侧被强制撑开一段距离,造成留白,可以改为right:0px(紧靠main_grid)或者position:fixed+right:0px(紧靠全屏)来解决问题

这个问题在Fuwari中亦存在:fuwari/src/components/control/BackToTop.astro

saicaca commented 7 months ago

感谢指出,主分支已修复