Skip to content

Commit

Permalink
feat: Highlighting Chats on READMe and Home
Browse files Browse the repository at this point in the history
  • Loading branch information
Estrada Irribarra, Rodrigo Andres committed Oct 20, 2024
1 parent d482044 commit ed05565
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,15 @@
color: #333;
border-radius: 5px;
font-family: monospace;
word-wrap: break-word; /* Permite que el texto largo se ajuste en varias líneas */
white-space: pre-wrap; /* Mantiene los saltos de línea pero permite ajustar el texto */
overflow-wrap: break-word; /* Otra opción para asegurar que las palabras largas se ajusten */
}

@media (max-width: 768px) {
.coming-soon code {
word-break: break-all; /* Rompe palabras largas en pantallas pequeñas si es necesario */
}
}


Expand Down

0 comments on commit ed05565

Please sign in to comment.