Skip to content

Commit 9a3150f

Browse files
committed
20240708_002
1 parent 416fa88 commit 9a3150f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Entregas/PruebasEntrega/hechoPorMi/css/estilosCarrito.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ th{
9595
color: var(--color-body);
9696
padding-top: 20px;
9797
padding-bottom: 20px;
98+
font-size: large;
9899
}
99100

100101

@@ -124,6 +125,7 @@ tr:last-child td:last-child {
124125
}
125126
td:last-child {
126127
font-weight: bolder;
128+
font-size: large;
127129
}
128130

129131
table,

Entregas/PruebasEntrega/hechoPorMi/js/cartList.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ productosAgrupados.forEach(producto => {
2929

3030
productoElemento.innerHTML = `
3131
<tbody>
32-
<TR>
32+
<tr>
3333
<TD> ${producto.nombre} </TD>
34-
<TD> ${producto.precio}$ </TD>
34+
<TD> ${producto.precio} $ </TD>
3535
<TD> ${producto.cantidad} </TD>
36-
<TD> ${total} </TD>
37-
</TR>
36+
<TD> ${total} $ </TD>
37+
</tr>
3838
</tbody>
3939
4040

0 commit comments

Comments
 (0)