conformidad.componente.css 815 Bytes
Newer Older
1 2 3 4 5 6
.example-form {
  min-width: 150px;
  max-width: 500px;
  width: 100%;
}

7 8 9 10
.divRequerimientos{
  width: 15%;
}

11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
.example-full-width {
  width: 100%;
}

.divisionGeneral{
  margin: 0 20px;
}

.titulo-Principal{
  margin: 20px;
}

.select-tipoTrabajo{
  width: 20rem;
}
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45

.contenedorRequerimiento{
  padding: 0 20px;
}

.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) */
}

46 47 48 49 50
.mdc-button__label{
  display: flex !important;
  align-items: center !important;
}

51 52 53 54
mat-label {
  opacity: 1; /* Por defecto, el label será completamente visible */
}