26 lines
539 B
CSS
26 lines
539 B
CSS
/* frontend/static/css/style.css */
|
|
|
|
/* Estilos para el área de salida que requiere white-space específico */
|
|
.output-area {
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
/* Estilos para modales - solo lo que no se puede hacer con Tailwind */
|
|
.modal {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.modal-content {
|
|
max-height: 90vh;
|
|
overflow-y: auto;
|
|
} |