Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15925 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
11347 nelberth 1
@use '../../../../css/shared/variables.scss';
2
 
3
.fileModal {
4
  background-color: black;
5
  position: absolute;
6
  top: 0;
7
  bottom: 0;
8
  height: 100%;
9
  width: 100%;
10
  z-index: 99999;
11
  display: flex;
12
  flex-direction: column;
13
  align-items: center;
14
  justify-content: center;
15
}
16
 
17
.buttonsContainer {
18
  margin-top: 1rem;
19
}
20
.button {
21
  padding: 1rem;
22
  background-color: variables.$primary-lightblue;
23
  color: white;
24
  border-radius: 5px;
25
  & + & {
26
    margin-left: 1rem;
27
  }
28
}
29
 
30
.file {
31
  width: 90vw;
32
  height: 60vh;
33
  object-fit: contain;
34
}