45 lines
578 B
CSS
45 lines
578 B
CSS
.select {
|
|
min-height: 90vh;
|
|
max-height: 90vh;
|
|
max-width: 50vw;
|
|
left: 40vw;
|
|
position: relative;
|
|
overflow-y: scroll;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.preview {
|
|
max-width: 50vw;
|
|
left: 0;
|
|
}
|
|
|
|
.borderKeeper {
|
|
width: 132px !important;
|
|
height: 132px !important;
|
|
padding: 6px;
|
|
margin: 12px;
|
|
}
|
|
|
|
.borderKeeper > span {
|
|
display: inline-table !important;
|
|
}
|
|
|
|
.borderKeeper :nth-child(2) {
|
|
top: -8em;
|
|
}
|
|
|
|
.userImage {
|
|
z-index: -1;
|
|
top: 0;
|
|
}
|
|
|
|
.borderImage {
|
|
z-index: 3;
|
|
transform: scale(1.22);
|
|
}
|
|
|
|
.selected {
|
|
border: 3px solid black;
|
|
z-index: 5;
|
|
}
|