浏览代码

Fixes nav styles in the home view

main
Keith Daulton 2 年前
父节点
当前提交
de83d56b1a
共有 1 个文件被更改,包括 16 次插入10 次删除
  1. +16
    -10
      src/webviews/apps/home/home.scss

+ 16
- 10
src/webviews/apps/home/home.scss 查看文件

@ -193,20 +193,26 @@ ul {
}
&--text {
flex: none;
padding: {
left: 0.4rem;
right: 0.4rem;
}
gap: 0.2rem;
min-width: 2.2rem;
width: fit-content;
@media (max-width: 368px) {
@media (max-width: 370px) {
> :last-child {
display: none;
}
}
@media (min-width: 371px) {
flex: none;
padding: {
left: 0.3rem;
right: 0.3rem;
}
gap: 0.2rem;
min-width: 2.2rem;
width: fit-content;
& + & {
margin-left: 0.2rem;
}
}
}
}
}

正在加载...
取消
保存