Rev 3580 | AutorÃa | Ultima modificación | Ver Log |
.fileModal {
background: $bg-color;
box-shadow: $shadow;
border-radius: $border-radius;
display: flex;
flex-direction: column;
gap: .5rem;
padding: 1rem;
overflow: scroll;
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
z-index: 10000;
}
.buttonsContainer {
margin-top: 1rem;
}
.button {
padding: 1rem;
background-color: $button-bg;
color: $button-text-color;
border-radius: 5px;
& + & {
margin-left: 1rem;
}
}
.file {
width: 100%;
height: 100%;
max-height: 320px;
object-fit: contain;
}