diff options
| author | Rafi Zadanly <rafizadanly@gmail.com> | 2022-12-16 11:22:45 +0700 |
|---|---|---|
| committer | Rafi Zadanly <rafizadanly@gmail.com> | 2022-12-16 11:22:45 +0700 |
| commit | f45dee703450c42521884f8e0da8ae49f652b8c6 (patch) | |
| tree | 184ef403a9808e05823e9e2a93d0e24dae7b385c /src/pages/shop/brands.js | |
| parent | a03d150a2816ed7f901d3acf0ceb26c4025365e1 (diff) | |
item cart delete confirmation
Diffstat (limited to 'src/pages/shop/brands.js')
| -rw-r--r-- | src/pages/shop/brands.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/shop/brands.js b/src/pages/shop/brands.js index 6c1f1816..af9ab59c 100644 --- a/src/pages/shop/brands.js +++ b/src/pages/shop/brands.js @@ -47,7 +47,7 @@ export default function Brands({ initialManufactures }) { <h1>Semua Brand di Indoteknik</h1> <div className="flex overflow-x-auto gap-x-2 py-2"> {alphabets.map((alphabet, index) => ( - <button key={index} className={"p-2 py-1 border bg-white border-gray-300 rounded w-10 flex-shrink-0" + (manufactureStartwith == alphabet ? ' bg-yellow-900 border-yellow-900 ' : '')} onClick={() => filterManufactureStartWith(alphabet)}> + <button key={index} className={"p-2 py-1 border bg-white border-gray_r-6 rounded w-10 flex-shrink-0" + (manufactureStartwith == alphabet ? ' bg-yellow_r-9 border-yellow_r-9 ' : '')} onClick={() => filterManufactureStartWith(alphabet)}> {alphabet} </button> ))} |
