30 lines
418 B
CSS
30 lines
418 B
CSS
.PreviewsContainer {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.PreviewContainer {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
flex: 1 0 200px;
|
|
max-height: 250px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.Image {
|
|
vertical-align: top;
|
|
max-width: 100%;
|
|
min-width: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.RemoveItem {
|
|
position: absolute;
|
|
bottom: 25px;
|
|
right: 25px;
|
|
}
|
|
|
|
.ActionsContainer {
|
|
display: flex;
|
|
}
|