32 lines
606 B
CSS
32 lines
606 B
CSS
.element-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: fit-content;
|
|
}
|
|
|
|
.element-item img {
|
|
justify-content: center;
|
|
width: 95%;
|
|
height: 200px;
|
|
object-fit: contain;
|
|
border-radius: 10px;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
|
|
.element-update-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: fit-content;
|
|
}
|
|
|
|
.element-update-item img {
|
|
width: 400px;
|
|
height: 300px;
|
|
object-fit: contain;
|
|
border-radius: 10px;
|
|
image-rendering: pixelated;
|
|
}
|