feat: support upload image
This commit is contained in:
parent
ae70d2fee1
commit
5dc3658e19
37 changed files with 1674 additions and 33 deletions
22
app/components/base/image-gallery/style.module.css
Normal file
22
app/components/base/image-gallery/style.module.css
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
.item {
|
||||
height: 200px;
|
||||
margin-right: 8px;
|
||||
margin-bottom: 8px;
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.item:nth-child(3n) {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.img-2 .item:nth-child(2n),
|
||||
.img-4 .item:nth-child(2n) {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.img-4 .item:nth-child(3n) {
|
||||
margin-right: 8px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue