17 lines
352 B
CSS
17 lines
352 B
CSS
.model-create-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 200px;
|
|
}
|
|
|
|
.model-create-item img {
|
|
justify-content: center;
|
|
width: 200px;
|
|
height: 200px;
|
|
object-fit: contain;
|
|
border-radius: 10px;
|
|
image-rendering: pixelated;
|
|
border: 0.2px solid gray;
|
|
}
|