LocalScriptsWeb/frontend/static/css/style.css

31 lines
665 B
CSS
Raw Normal View History

/* frontend/static/css/style.css */
2025-02-07 07:35:18 -03:00
/* Solo mantenemos estilos específicos que no podemos lograr fácilmente con Tailwind */
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
}
2025-02-08 13:20:05 -03:00
/* Estilos para modales que no se pueden lograr fácilmente 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 {
2025-02-07 07:35:18 -03:00
background: white;
2025-02-07 19:08:39 -03:00
padding: 2rem;
border-radius: 0.5rem;
2025-02-07 19:08:39 -03:00
max-width: 600px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
}