48 lines
703 B
CSS
48 lines
703 B
CSS
|
|
mat-dialog-actions {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
button {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.green-icon {
|
|
color: green;
|
|
}
|
|
|
|
.red-icon {
|
|
color: red;
|
|
}
|
|
|
|
|
|
.spacing-container {
|
|
margin-top: 20px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.list-item-content {
|
|
display: flex;
|
|
align-items: flex-start; /* Alinea el contenido al inicio */
|
|
justify-content: space-between; /* Espacio entre los textos y los íconos */
|
|
width: 100%; /* Asegúrate de que el contenido ocupe todo el ancho */
|
|
}
|
|
|
|
.text-content {
|
|
flex-grow: 1;
|
|
margin-right: 16px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.icon-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.right-icon {
|
|
margin-left: 8px;
|
|
cursor: pointer;
|
|
}
|