mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
d9b7ef56ea
* style(docs): use css var * style: update * style: demo-icon use grid layout * style: remove demo-block.vue style scoped * docs: remove strange character
43 lines
737 B
SCSS
43 lines
737 B
SCSS
.infinite-list {
|
|
height: 300px;
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
|
|
.infinite-list-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 50px;
|
|
background: var(--el-color-primary-light-9);
|
|
margin: 10px;
|
|
color: var(--el-color-primary);
|
|
& + .list-item {
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.infinite-list-wrapper {
|
|
height: 300px;
|
|
text-align: center;
|
|
|
|
.list {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.list-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 50px;
|
|
background: var(--el-color-danger-lighter);
|
|
color: var(--el-color-danger);
|
|
& + .list-item {
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|