spencerwooo / onedrive-cf-index

Deprecated, use new project 👇
https://github.com/spencerwooo/onedrive-vercel-index
MIT License
1.08k stars 439 forks source link

移动端文件名过长不自动换行,撑破path #154

Closed opoet closed 3 years ago

opoet commented 3 years ago

如下图,文件名过长撑破path区域,导致显示异常

image

在css的.patch内添加如下两条可以解决

.path {
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    color: #999;

    word-break: break-all;
    word-wrap: break-word;

}


文件名过长也会导致文件大小显示变乱

image

spencerwooo commented 3 years ago

CSS 确实有问题,建议自己暂时改一下,后面有计划重构整个前端,当前版本暂时不做更新了。