chore
This commit is contained in:
@@ -47,7 +47,6 @@ const Catalog = () => {
|
|||||||
return (
|
return (
|
||||||
<div className={styles.layout}>
|
<div className={styles.layout}>
|
||||||
<section className={styles.catalog}>
|
<section className={styles.catalog}>
|
||||||
<section>
|
|
||||||
<form onSubmit={e => e.preventDefault()}>
|
<form onSubmit={e => e.preventDefault()}>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
@@ -57,7 +56,6 @@ const Catalog = () => {
|
|||||||
(event) => setFilterText(event.target.value)}/>
|
(event) => setFilterText(event.target.value)}/>
|
||||||
<button type="submit">Buscar</button>
|
<button type="submit">Buscar</button>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
|
||||||
<ProductCards products={filteredProducts} addProductLine={addProductLine}/>
|
<ProductCards products={filteredProducts} addProductLine={addProductLine}/>
|
||||||
</section>
|
</section>
|
||||||
<aside className={styles.order}>
|
<aside className={styles.order}>
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
|
|
||||||
.container {
|
.container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
border: 1px solid snow;
|
border: 1px solid snow;
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
border-radius: 32px;
|
border-radius: 32px;
|
||||||
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user