opt: adjust ItemList component styles

This commit is contained in:
RockYang
2023-10-15 15:47:42 +08:00
parent fb3d43d2d5
commit 80e2b34abc
11 changed files with 195 additions and 105 deletions

View File

@@ -14,12 +14,59 @@
.inner {
display flex
color #ffffff
padding 20px;
padding 15px;
overflow-y visible
overflow-x hidden
.left-menu {
width 160px
.list-box {
.app-item {
border 1px solid #666666
border-radius 6px
overflow hidden
transition: all 0.3s ease; /* */
.el-image {
padding 6px
.el-image__inner {
border-radius 10px
}
}
.title {
display flex
padding 10px
.name {
width 100%
text-align left
font-size 16px
font-weight bold
color #47fff1
}
.opt {
position: relative;
top -5px
}
}
.hello-msg {
overflow: hidden;
white-space normal
text-overflow: ellipsis;
height 60px
padding 10px
font-size 14px
color #999999
}
&:hover {
box-shadow: 0 0 10px rgba(71, 255, 241, 0.6); /* */
transform: translateY(-10px); /* 10 */
}
}
}
}
}