Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3580 stevensc 1
.fileModal {
2
  background-color: $bg-color;
3
  padding: 2rem 1rem;
4
  position: absolute;
5
  border-radius: 10px;
6
  box-shadow: 0 0 3px $border-primary;
7
  top: 50%;
8
  left: 50%;
9
  height: 80%;
10
  width: 80%;
11
  z-index: 99999;
12
  display: flex;
13
  flex-direction: column;
14
  align-items: center;
15
  justify-content: center;
16
  transform: translate(-50%, -50%);
17
}
18
 
19
.buttonsContainer {
20
  margin-top: 1rem;
21
}
22
.button {
23
  padding: 1rem;
24
  background-color: $button-bg;
25
  color: $button-text-color;
26
  border-radius: 5px;
27
  & + & {
28
    margin-left: 1rem;
29
  }
30
}
31
 
32
.file {
33
  width: 100%;
34
  height: 100%;
35
  max-height: 320px;
36
  object-fit: contain;
37
}