chore: playground mutilmodel input

This commit is contained in:
jialin
2024-08-16 12:03:48 +08:00
parent 0a47c4c067
commit 1d92571d09
48 changed files with 1350 additions and 68 deletions
+42
View File
@@ -0,0 +1,42 @@
.thumb-img {
position: relative;
display: flex;
width: 56px;
height: 56px;
.img {
display: flex;
width: 100%;
height: 100%;
overflow: hidden;
border-radius: var(--border-radius-base);
cursor: pointer;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
border: 1px solid var(--ant-color-border);
}
.del {
position: absolute;
top: -4px;
right: -2px;
font-size: var(--font-size-middle);
cursor: pointer;
background-color: var(--color-white-1);
display: none;
border-radius: 50%;
overflow: hidden;
}
&:hover {
.del {
display: block;
}
}
}
.thumb-list-wrap {
padding: 10px;
// background-color: var(--color-fill-1);
}