diff --git a/src/app/features/store/pages/account-page/components/purchase-list-item/purchase-list-item.scss b/src/app/features/store/pages/account-page/components/purchase-list-item/purchase-list-item.scss index f98829b..bbaa5a2 100644 --- a/src/app/features/store/pages/account-page/components/purchase-list-item/purchase-list-item.scss +++ b/src/app/features/store/pages/account-page/components/purchase-list-item/purchase-list-item.scss @@ -4,14 +4,12 @@ align-items: center; padding: 16px; padding-left:0; - border-bottom: 1px solid #e0e0e0; transition: background-color 0.2s, border-radius 0.2s; cursor: pointer; } .purchase-item:hover { background-color: #f0f0f0; border-radius: 8px; - border-bottom-color: transparent; } .purchase-item:hover .arrow-icon { color: #5b75ff; /* Blue on hover */ diff --git a/src/app/features/store/pages/account-page/components/purchase-list-item/purchase-list-item.ts b/src/app/features/store/pages/account-page/components/purchase-list-item/purchase-list-item.ts index cb5f62f..393f6e5 100644 --- a/src/app/features/store/pages/account-page/components/purchase-list-item/purchase-list-item.ts +++ b/src/app/features/store/pages/account-page/components/purchase-list-item/purchase-list-item.ts @@ -10,3 +10,4 @@ import { Component, Input } from '@angular/core'; export class PurchaseListItem { @Input() purchase!: { id: string; date: string }; } + diff --git a/src/app/features/store/pages/account-page/components/purchase-list/purchase-list.html b/src/app/features/store/pages/account-page/components/purchase-list/purchase-list.html index cfb45e9..f71febd 100644 --- a/src/app/features/store/pages/account-page/components/purchase-list/purchase-list.html +++ b/src/app/features/store/pages/account-page/components/purchase-list/purchase-list.html @@ -1,6 +1,8 @@