CRÍTICO: Eliminar estilos globales h1-h6 NO documentados
Problema: style.css tenía estilos globales h1-h6 (líneas 110-123) con font-weight: 600 que sobrescribían Bootstrap y NO están en el template. Solución: ELIMINAR completamente estos estilos globales. Template RDash usa SOLO estilos Bootstrap default para headings. NO tiene custom CSS para h1-h6 globales. Esto restaura el comportamiento correcto de Bootstrap: - h6 font-weight: 500 (no 600) - Usa font-family de Bootstrap (no custom) Issue: #128 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -107,20 +107,8 @@ body {
|
||||
Typography
|
||||
========================================================================== */
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5em;
|
||||
font-family: var(--font-headings);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
line-height: var(--line-height-tight);
|
||||
}
|
||||
|
||||
h1 { font-size: 2.5rem; }
|
||||
h2 { font-size: 2rem; }
|
||||
h3 { font-size: 1.75rem; }
|
||||
h4 { font-size: 1.5rem; }
|
||||
h5 { font-size: 1.25rem; }
|
||||
h6 { font-size: 1rem; }
|
||||
/* ELIMINADO: Estilos globales h1-h6 (líneas 110-123) - NO están en template */
|
||||
/* Template usa SOLO estilos Bootstrap default para headings */
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
|
||||
Reference in New Issue
Block a user