conformidad.componente.css 743 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
.example-full-width {
  width: 100%;
}

.divisionGeneral{
  margin: 0 20px;
}

.titulo-Principal{
  margin: 20px;
}

.select-tipoTrabajo{
  width: 20rem;
}
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

.contenedor-general-botones {
  display: flex;
}

.contenedor-botones{
  display: flex;
  justify-content: center;
  padding: 0 10px;
}

.fade-out {
  transition: opacity 1s ease-in-out; /* Hacer que la opacidad cambie gradualmente */
  opacity: 0; /* El objetivo es que la opacidad llegue a 0 (completamente transparente) */
}

32 33 34 35 36
.mdc-button__label{
  display: flex !important;
  align-items: center !important;
}

37 38 39 40
mat-label {
  opacity: 1; /* Por defecto, el label será completamente visible */
}

41 42 43 44
.custom-snackbar {
  white-space: pre-line; /* Permite respetar saltos de línea */
}