send-gift: cuadrícula de objetos 4/fila centrada + paginación
Aplana el catálogo y lo pagina (8 por página = 2 filas de 4) con controles Atrás / 1 2 3 / Siguiente centrados. Nuevas clases .gift-grid (grid 4 cols, responsive a 2 en móvil) y .gift-pagination en novawow-style.css. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1957,6 +1957,41 @@ th {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Enviar regalo: cuadrícula de objetos (4 por fila) centrada + paginación */
|
||||
.gift-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 160px);
|
||||
gap: 10px;
|
||||
justify-content: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.gift-grid .item-box {
|
||||
width: auto;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.gift-pagination {
|
||||
text-align: center;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.gift-pagination button {
|
||||
width: auto;
|
||||
min-width: 34px;
|
||||
padding: 4px 10px;
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
.gift-pagination button.active-page {
|
||||
font-weight: bold;
|
||||
color: #d79602;
|
||||
}
|
||||
|
||||
@media (max-width: 700px) {
|
||||
.gift-grid { grid-template-columns: repeat(2, 160px); }
|
||||
}
|
||||
|
||||
/* Font Awesome */
|
||||
.fa-caret-down {
|
||||
color: #7e8d09;
|
||||
|
||||
Reference in New Issue
Block a user