LocalScriptsWeb/frontend/static/css/style.css

26 lines
539 B
CSS
Raw Normal View History

/* frontend/static/css/style.css */
2025-02-07 07:35:18 -03:00
/* Estilos para el área de salida que requiere white-space específico */
2025-02-07 19:08:39 -03:00
.output-area {
white-space: pre-wrap;
word-wrap: break-word;
2025-02-07 07:35:18 -03:00
}
/* Estilos para modales - solo lo que no se puede hacer con Tailwind */
2025-02-07 19:08:39 -03:00
.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;
2025-02-07 07:35:18 -03:00
}
2025-02-07 19:08:39 -03:00
.modal-content {
max-height: 90vh;
overflow-y: auto;
}