css flex
.component-upload-wrapper {
position: relative;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
flex-flow: wrap;
.file-uploaded {
flex: 1;
border: 1px solid red;
&:not(:nth-last-child(1)) {
margin-right: 20px;
}
}
}