We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 416fa88 commit 9a3150fCopy full SHA for 9a3150f
2 files changed
Entregas/PruebasEntrega/hechoPorMi/css/estilosCarrito.css
@@ -95,6 +95,7 @@ th{
95
color: var(--color-body);
96
padding-top: 20px;
97
padding-bottom: 20px;
98
+ font-size: large;
99
}
100
101
@@ -124,6 +125,7 @@ tr:last-child td:last-child {
124
125
126
td:last-child {
127
font-weight: bolder;
128
129
130
131
table,
Entregas/PruebasEntrega/hechoPorMi/js/cartList.js
@@ -29,12 +29,12 @@ productosAgrupados.forEach(producto => {
29
30
productoElemento.innerHTML = `
31
<tbody>
32
- <TR>
+ <tr>
33
<TD> ${producto.nombre} </TD>
34
- <TD> ${producto.precio}$ </TD>
+ <TD> ${producto.precio} $ </TD>
35
<TD> ${producto.cantidad} </TD>
36
- <TD> ${total} </TD>
37
- </TR>
+ <TD> ${total} $ </TD>
+ </tr>
38
</tbody>
39
40
0 commit comments