This commit is contained in:
2026-01-23 16:12:49 -05:00
parent 2bb6618e66
commit 6d7d3261ee
2 changed files with 10 additions and 13 deletions

View File

@@ -47,7 +47,6 @@ const Catalog = () => {
return (
<div className={styles.layout}>
<section className={styles.catalog}>
<section>
<form onSubmit={e => e.preventDefault()}>
<input
type="text"
@@ -57,7 +56,6 @@ const Catalog = () => {
(event) => setFilterText(event.target.value)}/>
<button type="submit">Buscar</button>
</form>
</section>
<ProductCards products={filteredProducts} addProductLine={addProductLine}/>
</section>
<aside className={styles.order}>

View File

@@ -1,10 +1,9 @@
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
border: 1px solid snow;
display: flex;
flex-wrap: wrap;
border-radius: 32px;
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}