Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4210 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 4210 Rev 4212
Línea 1... Línea 1...
1
.fileModal {
1
.file-modal {
2
  background: $bg-color;
2
  background: $bg-color;
3
  box-shadow: $shadow;
3
  box-shadow: $shadow;
4
  border-radius: $border-radius;
4
  border-radius: $border-radius;
5
  display: flex;
5
  display: flex;
6
  flex-direction: column;
6
  flex-direction: column;
7
  gap: .5rem;
7
  gap: 0.5rem;
8
  padding: 1rem;
8
  padding: 1rem;
-
 
9
  width: 80vmin;
9
  overflow: scroll;
10
  overflow: scroll;
10
  position: absolute;
11
  position: absolute;
11
  bottom: 100%;
12
  bottom: 100%;
12
  left: 50%;
13
  left: 50%;
13
  transform: translateX(-50%);
14
  transform: translateX(-50%);
14
  z-index: 10000;
15
  z-index: 10000;
15
}
-
 
16
 
-
 
17
.buttonsContainer {
16
  .buttons-container {
-
 
17
    display: flex;
18
  margin-top: 1rem;
18
    gap: 1rem;
19
}
19
  }
20
.button {
20
  .file {
21
  padding: 1rem;
21
    width: 100%;
22
  background-color: $button-bg;
-
 
23
  color: $button-text-color;
22
    height: 100%;
24
  border-radius: 5px;
23
    max-height: 320px;
25
  & + & {
-
 
26
    margin-left: 1rem;
24
    object-fit: contain;
27
  }
25
  }
28
}
-
 
29
 
-
 
30
.file {
-
 
31
  width: 100%;
-
 
32
  height: 100%;
-
 
33
  max-height: 320px;
-
 
34
  object-fit: contain;
-
 
35
}
26
}